| Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-offline-payments/Model/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/magento/module-offline-payments/Model/Banktransfer.php |
<?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
{
public 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()
{
$instructions = $this->getConfigData('instructions');
return $instructions !== null ? trim($instructions) : '';
}
}