-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathBamsOauthCheck.php
More file actions
86 lines (75 loc) · 2.1 KB
/
Copy pathBamsOauthCheck.php
File metadata and controls
86 lines (75 loc) · 2.1 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* Copyright (c) Ratepay GmbH
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RatePAY\Payment\Block\System\Config;
class BamsOauthCheck extends \Magento\Config\Block\System\Config\Form\Field\FieldArray\AbstractFieldArray
{
/**
* Template
*
* @var string
*/
protected $_template = 'RatePAY_Payment::system/config/bamsoauthcheck.phtml';
/**
* @var \Magento\Backend\Model\Session
*/
protected $backendSession;
/**
* @var bool
*/
protected $blStatus;
/**
* Constructor
*
* @param \Magento\Backend\Block\Template\Context $context
* @param \Magento\Backend\Model\Session $backendSession
* @param array $data
*/
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Backend\Model\Session $backendSession,
array $data = []
) {
parent::__construct($context, $data);
$this->backendSession = $backendSession;
}
/**
* Unset some non-related element parameters
*
* @param \Magento\Framework\Data\Form\Element\AbstractElement $element
* @return string
*/
public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
{
$this->blStatus = $this->backendSession->getRatepayBamsOauthChanged();
if ($this->blStatus === null) {
return '';
}
$this->backendSession->unsRatepayBamsOauthChanged();
$element->unsScope()->unsCanUseWebsiteValue()->unsCanUseDefaultValue();
return parent::render($element);
}
/**
* Initialise form fields
*
* @return void
*/
protected function _construct()
{
$this->addColumn('txaction', ['label' => __('Transactionstatus-message')]);
$this->_addAfter = false;
$this->_addButtonLabel = __('Add Minimum Qty');
parent::_construct();
}
/**
* @return bool
*/
public function getStatus()
{
return $this->blStatus;
}
}