1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Payment\Block\Info;
/**
* Block for Bank Transfer payment generic info
*
* @api
* @since 100.0.2
*/
class Instructions extends \Magento\Payment\Block\Info
{
/**
* Instructions text
*
* @var string
*/
protected $_instructions;
/**
* @var string
*/
protected $_template = 'Magento_Payment::info/instructions.phtml';
/**
* Get instructions text from order payment
* (or from config, if instructions are missed in payment)
*
* @return string
*/
public function getInstructions()
{
if ($this->_instructions === null) {
$this->_instructions = $this->getInfo()->getAdditionalInformation(
'instructions'
) ?: trim($this->getMethod()->getConfigData('instructions'));
}
return $this->_instructions;
}
}