Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-encryption-key
Block
Adminhtml
Crypt
Key
Edit.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\EncryptionKey\Block\Adminhtml\Crypt\Key
;
7
14
class
Edit
extends
\Magento\Backend\Block\Widget\Form\Container
15
{
21
protected
$_blockGroup
=
null
;
22
28
protected
$_controller
=
'crypt_key'
;
29
35
protected
function
_construct
()
36
{
37
\Magento\Framework\DataObject::__construct
();
38
$this->buttonList->add(
39
'save'
,
40
[
41
'label'
=>
__
(
'Change Encryption Key'
),
42
'class'
=>
'save primary save-encryption-key'
,
43
'data_attribute'
=> [
44
'mage-init'
=> [
'button'
=> [
'event'
=>
'save'
,
'target'
=>
'#edit_form'
]],
45
]
46
],
47
1
48
);
49
}
50
56
public
function
getHeaderText
()
57
{
58
return
__
(
'Encryption Key'
);
59
}
60
}
Magento\EncryptionKey\Block\Adminhtml\Crypt\Key\Edit\getHeaderText
getHeaderText()
Definition:
Edit.php:56
__
__()
Definition:
__.php:13
Magento\EncryptionKey\Block\Adminhtml\Crypt\Key
Definition:
EditTest.php:6
Magento\EncryptionKey\Block\Adminhtml\Crypt\Key\Edit
Definition:
Edit.php:14
Magento\Framework\DataObject\__construct
__construct(array $data=[])
Definition:
DataObject.php:39
Magento\EncryptionKey\Block\Adminhtml\Crypt\Key\Edit\_construct
_construct()
Definition:
Edit.php:35
Magento\EncryptionKey\Block\Adminhtml\Crypt\Key\Edit\$_blockGroup
$_blockGroup
Definition:
Edit.php:21
Magento\EncryptionKey\Block\Adminhtml\Crypt\Key\Edit\$_controller
$_controller
Definition:
Edit.php:28