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-catalog
Helper
Catalog.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Catalog\Helper
;
7
13
class
Catalog
extends
\Magento\Framework\App\Helper\AbstractHelper
14
{
20
protected
$_attributeTabBlock
=
null
;
21
27
protected
$_categoryAttributeTabBlock
;
28
34
public
function
getAttributeTabBlock
()
35
{
36
return
$this->_attributeTabBlock
;
37
}
38
45
public
function
setAttributeTabBlock
($attributeTabBlock)
46
{
47
$this->_attributeTabBlock = $attributeTabBlock;
48
return
$this;
49
}
50
56
public
function
getCategoryAttributeTabBlock
()
57
{
58
return
$this->_categoryAttributeTabBlock
;
59
}
60
67
public
function
setCategoryAttributeTabBlock
($attributeTabBlock)
68
{
69
$this->_categoryAttributeTabBlock = $attributeTabBlock;
70
return
$this;
71
}
72
}
Magento\Catalog\Helper\Catalog\$_categoryAttributeTabBlock
$_categoryAttributeTabBlock
Definition:
Catalog.php:27
Magento\Catalog\Helper\Catalog\getCategoryAttributeTabBlock
getCategoryAttributeTabBlock()
Definition:
Catalog.php:56
Magento\Catalog\Helper\Catalog\setCategoryAttributeTabBlock
setCategoryAttributeTabBlock($attributeTabBlock)
Definition:
Catalog.php:67
Magento\Catalog\Helper
Definition:
CategoryTest.php:6
Magento\Catalog\Helper\Catalog\getAttributeTabBlock
getAttributeTabBlock()
Definition:
Catalog.php:34
Magento\Catalog\Helper\Catalog\setAttributeTabBlock
setAttributeTabBlock($attributeTabBlock)
Definition:
Catalog.php:45
Magento\Catalog\Helper\Catalog\$_attributeTabBlock
$_attributeTabBlock
Definition:
Catalog.php:20
Magento\Framework\App\Helper\AbstractHelper
Definition:
AbstractHelper.php:13
Magento\Catalog\Helper\Catalog
Definition:
Catalog.php:13