12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\OfflinePayments\Block\Info;
- class Checkmo extends \Magento\Payment\Block\Info
- {
- /**
- * @var string
- */
- protected $_payableTo;
- /**
- * @var string
- */
- protected $_mailingAddress;
- /**
- * @var string
- */
- protected $_template = 'Magento_OfflinePayments::info/checkmo.phtml';
- /**
- * Enter description here...
- *
- * @return string
- */
- public function getPayableTo()
- {
- if ($this->_payableTo === null) {
- $this->_convertAdditionalData();
- }
- return $this->_payableTo;
- }
- /**
- * Enter description here...
- *
- * @return string
- */
- public function getMailingAddress()
- {
- if ($this->_mailingAddress === null) {
- $this->_convertAdditionalData();
- }
- return $this->_mailingAddress;
- }
- /**
- * @deprecated 100.1.1
- * @return $this
- */
- protected function _convertAdditionalData()
- {
- $this->_payableTo = $this->getInfo()->getAdditionalInformation('payable_to');
- $this->_mailingAddress = $this->getInfo()->getAdditionalInformation('mailing_address');
- return $this;
- }
- /**
- * @return string
- */
- public function toPdf()
- {
- $this->setTemplate('Magento_OfflinePayments::info/pdf/checkmo.phtml');
- return $this->toHtml();
- }
- }
|