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-backend
Block
System
Account
Edit.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Backend\Block\System\Account
;
7
15
class
Edit
extends
\Magento\Backend\Block\Widget\Form\Container
16
{
20
protected
function
_construct
()
21
{
22
parent::_construct();
23
24
$this->_blockGroup =
'Magento_Backend'
;
25
$this->_controller =
'system_account'
;
26
$this->buttonList->update(
'save'
,
'label'
,
__
(
'Save Account'
));
27
$this->buttonList->remove(
'delete'
);
28
$this->buttonList->remove(
'back'
);
29
}
30
34
public
function
getHeaderText
()
35
{
36
return
__
(
'My Account'
);
37
}
38
}
Magento\Backend\Block\System\Account\Edit\getHeaderText
getHeaderText()
Definition:
Edit.php:34
__
__()
Definition:
__.php:13
Magento\Backend\Block\System\Account\Edit
Definition:
Edit.php:15
Magento\Backend\Block\System\Account\Edit\_construct
_construct()
Definition:
Edit.php:20
Magento\Backend\Block\System\Account