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-ui
Component
Form
Element
AbstractElement.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Ui\Component\Form\Element
;
7
8
use
Magento\Ui\Component\AbstractComponent
;
9
16
abstract
class
AbstractElement
extends
AbstractComponent
implements
ElementInterface
17
{
21
public
function
getHtmlId
()
22
{
23
return
''
;
24
}
25
29
public
function
getValue
()
30
{
31
return
$this->
getData
(
'value'
);
32
}
33
37
public
function
getFormInputName
()
38
{
39
return
$this->
getData
(
'input_name'
);
40
}
41
45
public
function
isReadonly
()
46
{
47
return
(
bool
) $this->
getData
(
'readonly'
);
48
}
49
53
public
function
getCssClasses
()
54
{
55
return
$this->
getData
(
'css_classes'
);
56
}
57
}
Magento\Ui\Component\AbstractComponent
Definition:
AbstractComponent.php:24
Magento\Ui\Component\Form\Element\AbstractElement\isReadonly
isReadonly()
Definition:
AbstractElement.php:45
Magento\Ui\Component\Form\Element\AbstractElement\getFormInputName
getFormInputName()
Definition:
AbstractElement.php:37
Magento\Ui\Component\AbstractComponent\getData
getData($key='', $index=null)
Definition:
AbstractComponent.php:264
Magento\Ui\Component\Form\Element\ElementInterface
Definition:
ElementInterface.php:15
Magento\Ui\Component\Form\Element\AbstractElement\getValue
getValue()
Definition:
AbstractElement.php:29
Magento\Ui\Component\Form\Element\AbstractElement\getCssClasses
getCssClasses()
Definition:
AbstractElement.php:53
Magento\Ui\Component\Form\Element\AbstractElement\getHtmlId
getHtmlId()
Definition:
AbstractElement.php:21
Magento\Ui\Component\Form\Element
Definition:
AbstractElement.php:6
Magento\Framework\Data\Form\Element\AbstractElement
Definition:
AbstractElement.php:21