/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/View/Asset/File/FallbackContext.php
99 строк
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\View\Asset\File; use Magento\Framework\App\Filesystem\DirectoryList; /** * An advanced context that contains information necessary for view files fallback system * * @api * @since 100.0.2 */ class FallbackContext extends Context { /** * @var string */ private $area; /** * @var string */ private $theme; /** * @var string */ private $locale; /** * @param string $baseUrl * @param string $areaType * @param string $themePath * @param string $localeCode */ public function __construct($baseUrl, $areaType, $themePath, $localeCode) { $this->area = $areaType; $this->theme = $themePath; $this->locale = $localeCode; parent::__construct($baseUrl, DirectoryList::STATIC_VIEW, $this->generatePath()); } /** * Get area code * * @return string */ public function getAreaCode() { return $this->area; } /** * Get theme path * * @return string */ public function getThemePath() { return $this->theme; } /** * Get locale code * * @return string */ public function getLocale() { return $this->locale; } /** * Generate path based on the context parameters * * @return string */ private function generatePath() { return $this->area . ($this->theme ? '/' . $this->theme : '') . ($this->locale ? '/' . $this->locale : ''); } /** * Returns path to Require.js config object depending on HTTPS or HTTP protocol being used * * @return string */ public function getConfigPath() { return $this->getPath(); } }