1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\PageCache\Model\App;
- /**
- * Class CachePlugin
- * Should add design exceptions o identifier for built-in cache
- */
- class CacheIdentifierPlugin
- {
- /**
- * Constructor
- *
- * @param \Magento\Framework\View\DesignExceptions $designExceptions
- * @param \Magento\Framework\App\RequestInterface $request
- * @param \Magento\PageCache\Model\Config $config
- */
- public function __construct(
- \Magento\Framework\View\DesignExceptions $designExceptions,
- \Magento\Framework\App\RequestInterface $request,
- \Magento\PageCache\Model\Config $config
- ) {
- $this->designExceptions = $designExceptions;
- $this->request = $request;
- $this->config = $config;
- }
- /**
- * Adds a theme key to identifier for a built-in cache if user-agent theme rule is actual
- *
- * @param \Magento\Framework\App\PageCache\Identifier $identifier
- * @param string $result
- * @return string
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function afterGetValue(\Magento\Framework\App\PageCache\Identifier $identifier, $result)
- {
- if ($this->config->getType() == \Magento\PageCache\Model\Config::BUILT_IN && $this->config->isEnabled()) {
- $ruleDesignException = $this->designExceptions->getThemeByRequest($this->request);
- if ($ruleDesignException !== false) {
- return $ruleDesignException . $result;
- }
- }
- return $result;
- }
- }
|