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
framework
View
Layout
Reader
Context.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\View\Layout\Reader
;
7
8
use
Magento\Framework\View\Layout
;
9
use
Magento\Framework\View\Page
;
10
15
class
Context
16
{
20
protected
$scheduledStructure
;
21
25
protected
$pageConfigStructure
;
26
33
public
function
__construct
(
34
Layout
\
ScheduledStructure
$scheduledStructure
,
35
Page\
Config
\Structure
$pageConfigStructure
36
) {
37
$this->scheduledStructure =
$scheduledStructure
;
38
$this->pageConfigStructure =
$pageConfigStructure
;
39
}
40
44
public
function
getScheduledStructure
()
45
{
46
return
$this->scheduledStructure
;
47
}
48
52
public
function
getPageConfigStructure
()
53
{
54
return
$this->pageConfigStructure
;
55
}
56
}
Magento\Framework\View\Layout\Reader\Context\$pageConfigStructure
$pageConfigStructure
Definition:
Context.php:25
Magento\Framework\View\Layout
Definition:
AclCondition.php:6
Magento\Framework\View\Page
Definition:
Builder.php:6
Magento\Framework\View\Layout
Definition:
Layout.php:28
Magento\Framework\View\Layout\Reader
Definition:
Block.php:6
Magento\Framework\View\Layout\Reader\Context\$scheduledStructure
$scheduledStructure
Definition:
Context.php:20
Magento\Framework\View\Layout\ScheduledStructure
Definition:
ScheduledStructure.php:14
Magento\Framework\View\Layout\Reader\Context\__construct
__construct(Layout\ScheduledStructure $scheduledStructure, Page\Config\Structure $pageConfigStructure)
Definition:
Context.php:33
Magento\Framework\View\Context
Definition:
Context.php:32
Magento\Framework\App\Config
Definition:
Config.php:17
Magento\Framework\View\Layout\Reader\Context\getPageConfigStructure
getPageConfigStructure()
Definition:
Context.php:52
Magento\Framework\View\Layout\Reader\Context\getScheduledStructure
getScheduledStructure()
Definition:
Context.php:44