Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Banktransfer.php
Go to the documentation of this file.
1 <?php
7 
17 {
18  const PAYMENT_METHOD_BANKTRANSFER_CODE = 'banktransfer';
19 
26 
32  protected $_formBlockType = \Magento\OfflinePayments\Block\Form\Banktransfer::class;
33 
39  protected $_infoBlockType = \Magento\Payment\Block\Info\Instructions::class;
40 
46  protected $_isOffline = true;
47 
53  public function getInstructions()
54  {
55  return trim($this->getConfigData('instructions'));
56  }
57 }