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
Layout
Tabs
Tab.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Ui\Component\Layout\Tabs
;
7
8
use
Magento\Ui\Component\AbstractComponent
;
9
13
class
Tab
extends
AbstractComponent
implements
TabInterface
14
{
15
const
NAME
=
'tab'
;
16
22
public
function
getComponentName
()
23
{
24
return
static::NAME;
25
}
26
32
public
function
getTabLabel
()
33
{
34
return
$this->
getData
(
'tab_label'
);
35
}
36
42
public
function
getTabTitle
()
43
{
44
return
$this->
getData
(
'tab_title'
);
45
}
46
52
public
function
getTabClass
()
53
{
54
return
$this->
getData
(
'tab_class'
);
55
}
56
62
public
function
getTabUrl
()
63
{
64
return
$this->
getData
(
'tab_url'
);
65
}
66
72
public
function
isAjaxLoaded
()
73
{
74
return
$this->
getData
(
'is_ajax_loaded'
);
75
}
76
82
public
function
canShowTab
()
83
{
84
return
$this->
getData
(
'can_show_tab'
);
85
}
86
92
public
function
isHidden
()
93
{
94
return
$this->
getData
(
'is_hidden'
);
95
}
96
}
Magento\Ui\Component\AbstractComponent
Definition:
AbstractComponent.php:24
Magento\Ui\Component\Layout\Tabs\Tab\isAjaxLoaded
isAjaxLoaded()
Definition:
Tab.php:72
Magento\Ui\Component\Layout\Tabs\TabInterface
Definition:
TabInterface.php:11
Magento\Ui\Component\Layout\Tabs\Tab\getTabUrl
getTabUrl()
Definition:
Tab.php:62
Magento\Ui\Component\AbstractComponent\getData
getData($key='', $index=null)
Definition:
AbstractComponent.php:264
Magento\Ui\Component\Layout\Tabs\Tab
Definition:
Tab.php:13
Magento\Ui\Component\Layout\Tabs\Tab\NAME
const NAME
Definition:
Tab.php:15
Magento\Ui\Component\Layout\Tabs\Tab\getTabLabel
getTabLabel()
Definition:
Tab.php:32
Magento\Ui\Component\Layout\Tabs\Tab\getTabClass
getTabClass()
Definition:
Tab.php:52
Magento\Ui\Component\Layout\Tabs\Tab\canShowTab
canShowTab()
Definition:
Tab.php:82
Magento\Ui\Component\Layout\Tabs\Tab\getComponentName
getComponentName()
Definition:
Tab.php:22
Magento\Ui\Component\Layout\Tabs
Definition:
Nav.php:6
Magento\Ui\Component\Layout\Tabs\Tab\getTabTitle
getTabTitle()
Definition:
Tab.php:42
Magento\Ui\Component\Layout\Tabs\Tab\isHidden
isHidden()
Definition:
Tab.php:92