Guest User

Untitled

a guest
Mar 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. namespace UVBestellungControllerAdminhtmlIndex;
  3.  
  4. use MagentoFrameworkAppActionAction;
  5. use MagentoFrameworkControllerResultFactory;
  6.  
  7. class Index extends Action
  8. {
  9.  
  10. public function generateBestellschein() {
  11. $pdf = new Zend("Bestellschein.pdf");
  12.  
  13. return $pdf;
  14. }
  15.  
  16. public function execute()
  17. {
  18. return generateBestellschein();
  19. }
  20. }
Add Comment
Please, Sign In to add comment