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
Block
Logger.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Ui\Block
;
7
8
use
Magento\Framework\View\Element\Template
;
9
use
Magento\Ui\Model\Config
;
10
17
class
Logger
extends
Template
18
{
22
protected
$config
;
23
29
public
function
__construct
(
30
Template
\
Context
$context,
31
Config
$config
,
32
array
$data
= []
33
) {
34
parent::__construct($context,
$data
);
35
$this->config =
$config
;
36
}
37
43
public
function
isLoggingEnabled
()
44
{
45
return
$this->config->isLoggingEnabled();
46
}
47
53
public
function
getSessionStorageKey
()
54
{
55
return
$this->config->getSessionStorageKey();
56
}
57
}
Magento\Ui\Block\Logger\getSessionStorageKey
getSessionStorageKey()
Definition:
Logger.php:53
Magento\Ui\Block\Logger\$config
$config
Definition:
Logger.php:22
Magento\Framework\View\Element\Template
Definition:
Context.php:6
Magento\Ui\Block\Logger\__construct
__construct(Template\Context $context, Config $config, array $data=[])
Definition:
Logger.php:29
Magento\Ui\Model\Config
Definition:
Config.php:11
Magento\Framework\View\Element\Template\Context
Definition:
Context.php:23
Magento\Ui\Block\Logger\isLoggingEnabled
isLoggingEnabled()
Definition:
Logger.php:43
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Ui\Block\Logger
Definition:
Logger.php:17
Magento\Framework\View\Element\Template
Definition:
Template.php:32
Magento\Ui\Block