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
App
Interception
Cache
CompiledConfig.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\App\Interception\Cache
;
7
8
use
Magento\Framework\Cache\Frontend\Decorator\TagScope
;
9
use
Magento\Framework\Config\CacheInterface
;
10
use
Magento\Framework\App\Cache\Type\FrontendPool
;
11
12
class
CompiledConfig
extends
TagScope
implements
CacheInterface
13
{
17
const
TYPE_IDENTIFIER
=
'compiled_config'
;
18
22
const
CACHE_TAG
=
'COMPILED_CONFIG'
;
23
27
public
function
__construct
(
FrontendPool
$cacheFrontendPool)
28
{
29
parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER),
self::CACHE_TAG
);
30
}
31
}
Magento\Framework\App\Cache\Type\FrontendPool
Definition:
FrontendPool.php:17
Magento\Framework\App\Interception\Cache
Definition:
CompiledConfig.php:6
Magento\Framework\Cache\Frontend\Decorator\TagScope
Definition:
TagScope.php:15
Magento\Framework\App\Interception\Cache\CompiledConfig\CACHE_TAG
const CACHE_TAG
Definition:
CompiledConfig.php:22
Magento\Framework\App\Interception\Cache\CompiledConfig
Definition:
CompiledConfig.php:12
Magento\Framework\App\Interception\Cache\CompiledConfig\TYPE_IDENTIFIER
const TYPE_IDENTIFIER
Definition:
CompiledConfig.php:17
Magento\Framework\App\Interception\Cache\CompiledConfig\__construct
__construct(FrontendPool $cacheFrontendPool)
Definition:
CompiledConfig.php:27
Magento\Framework\Config\CacheInterface
Definition:
CacheInterface.php:16