123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Model\Method;
- /**
- * Substitution payment method for non-existing payments
- *
- * @method \Magento\Quote\Api\Data\PaymentMethodExtensionInterface getExtensionAttributes()
- */
- class Substitution extends AbstractMethod
- {
- /**
- * Method code
- */
- const CODE = 'substitution';
- /**
- * Key of title in instance additional information
- */
- const INFO_KEY_TITLE = 'method_title';
- /**
- * @var string
- */
- protected $_code = self::CODE;
- /**
- * @var string
- */
- protected $_infoBlockType = \Magento\Payment\Block\Info\Substitution::class;
- /**
- * Retrieve payment method title
- *
- * @return string
- */
- public function getTitle()
- {
- return $this->getInfoInstance()->getAdditionalInformation(self::INFO_KEY_TITLE);
- }
- }
|