-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathConfig.php
81 lines (72 loc) · 2.09 KB
/
Config.php
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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View;
use Magento\Framework\View\Asset\Repository;
use Magento\Framework\Config\ViewFactory;
/**
* Handles theme view.xml files
*/
class Config implements \Magento\Framework\View\ConfigInterface
{
/**
* List of view configuration objects per theme
*
* @var array
*/
protected $viewConfigs = [];
/**
* View service
*
* @var \Magento\Framework\View\Asset\Repository
*/
protected $assetRepo;
/**
* File view factory
*
* @var \Magento\Framework\Config\ViewFactory
*/
protected $viewConfigFactory;
/**
* Constructor
*
* @param Asset\Repository $assetRepo
* @param \Magento\Framework\Config\ViewFactory $viewConfigFactory
*/
public function __construct(
Repository $assetRepo,
ViewFactory $viewConfigFactory
) {
$this->assetRepo = $assetRepo;
$this->viewConfigFactory = $viewConfigFactory;
}
/**
* Render view config object for current package and theme
*
* @param array $params
* @return \Magento\Framework\Config\View
*/
public function getViewConfig(array $params = [])
{
$this->assetRepo->updateDesignParams($params);
$viewConfigParams = [];
if (isset($params['themeModel'])) {
/** @var \Magento\Framework\View\Design\ThemeInterface $currentTheme */
$currentTheme = $params['themeModel'];
$key = $currentTheme->getFullPath();
if (isset($this->viewConfigs[$key])) {
return $this->viewConfigs[$key];
}
$viewConfigParams['themeModel'] = $currentTheme;
}
$viewConfigParams['area'] = (isset($params['area'])) ? $params['area'] : null;
/** @var \Magento\Framework\Config\View $config */
$config = $this->viewConfigFactory->create($viewConfigParams);
if (isset($key)) {
$this->viewConfigs[$key] = $config;
}
return $config;
}
}