123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\OfflinePayments\Model;
- /**
- * Bank Transfer payment method model
- *
- * @method \Magento\Quote\Api\Data\PaymentMethodExtensionInterface getExtensionAttributes()
- *
- * @api
- * @since 100.0.2
- */
- class Banktransfer extends \Magento\Payment\Model\Method\AbstractMethod
- {
- const PAYMENT_METHOD_BANKTRANSFER_CODE = 'banktransfer';
- /**
- * Payment method code
- *
- * @var string
- */
- protected $_code = self::PAYMENT_METHOD_BANKTRANSFER_CODE;
- /**
- * Bank Transfer payment block paths
- *
- * @var string
- */
- protected $_formBlockType = \Magento\OfflinePayments\Block\Form\Banktransfer::class;
- /**
- * Instructions block path
- *
- * @var string
- */
- protected $_infoBlockType = \Magento\Payment\Block\Info\Instructions::class;
- /**
- * Availability option
- *
- * @var bool
- */
- protected $_isOffline = true;
- /**
- * Get instructions text from config
- *
- * @return string
- */
- public function getInstructions()
- {
- return trim($this->getConfigData('instructions'));
- }
- }
|