1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\OfflinePayments\Block\Info;
- class Purchaseorder extends \Magento\Payment\Block\Info
- {
- /**
- * @var string
- */
- protected $_template = 'Magento_OfflinePayments::info/purchaseorder.phtml';
- /**
- * @return string
- */
- public function toPdf()
- {
- $this->setTemplate('Magento_OfflinePayments::info/pdf/purchaseorder.phtml');
- return $this->toHtml();
- }
- }
|