1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Rule\Model\Condition;
/**
* Constructor modification point for Magento\Catalog\Model\Layer.
*
* All context classes were introduced to allow for backwards compatible constructor modifications
* of classes that were supposed to be extended by extension developers.
*
* Do not call methods of this class directly.
*
* As Magento moves from inheritance-based APIs all such classes will be deprecated together with
* the classes they were introduced for.
*
* @api
* @deprecated 100.2.0
* @since 100.0.2
*/
class Context implements \Magento\Framework\ObjectManager\ContextInterface
{
/**
* @var \Magento\Framework\View\Asset\Repository
*/
protected $_assetRepo;
/**
* @var \Magento\Framework\Stdlib\DateTime\TimezoneInterface
*/
protected $_localeDate;
/**
* @var \Magento\Framework\View\LayoutInterface
*/
protected $_layout;
/**
* @var \Magento\Rule\Model\ConditionFactory
*/
protected $_conditionFactory;
/**
* @var \Psr\Log\LoggerInterface
*/
protected $_logger;
/**
* @param \Magento\Framework\View\Asset\Repository $assetRepo
* @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate
* @param \Magento\Framework\View\LayoutInterface $layout
* @param \Magento\Rule\Model\ConditionFactory $conditionFactory
* @param \Psr\Log\LoggerInterface $logger
*/
public function __construct(
\Magento\Framework\View\Asset\Repository $assetRepo,
\Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate,
\Magento\Framework\View\LayoutInterface $layout,
\Magento\Rule\Model\ConditionFactory $conditionFactory,
\Psr\Log\LoggerInterface $logger
) {
$this->_assetRepo = $assetRepo;
$this->_localeDate = $localeDate;
$this->_layout = $layout;
$this->_conditionFactory = $conditionFactory;
$this->_logger = $logger;
}
/**
* @return \Magento\Framework\View\Asset\Repository
*/
public function getAssetRepository()
{
return $this->_assetRepo;
}
/**
* @return \Magento\Framework\Stdlib\DateTime\TimezoneInterface
*/
public function getLocaleDate()
{
return $this->_localeDate;
}
/**
* @return \Magento\Framework\View\LayoutInterface
*/
public function getLayout()
{
return $this->_layout;
}
/**
* @return \Magento\Rule\Model\ConditionFactory
*/
public function getConditionFactory()
{
return $this->_conditionFactory;
}
/**
* @return \Psr\Log\LoggerInterface
*/
public function getLogger()
{
return $this->_logger;
}
}