Purchaseorder.php 523 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\OfflinePayments\Block\Info;
  7. class Purchaseorder extends \Magento\Payment\Block\Info
  8. {
  9. /**
  10. * @var string
  11. */
  12. protected $_template = 'Magento_OfflinePayments::info/purchaseorder.phtml';
  13. /**
  14. * @return string
  15. */
  16. public function toPdf()
  17. {
  18. $this->setTemplate('Magento_OfflinePayments::info/pdf/purchaseorder.phtml');
  19. return $this->toHtml();
  20. }
  21. }