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
DB
Adapter
DdlCache.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Framework\DB\Adapter
;
8
9
use
Magento\Framework\Cache\Frontend\Decorator\TagScope
;
10
use
Magento\Framework\App\Cache\Type\FrontendPool
;
11
15
class
DdlCache
extends
TagScope
16
{
20
const
TYPE_IDENTIFIER
=
'db_ddl'
;
21
25
const
CACHE_TAG
=
'DB_DDL'
;
26
32
public
function
__construct
(
FrontendPool
$cacheFrontendPool)
33
{
34
parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER),
self::CACHE_TAG
);
35
}
36
}
Magento\Framework\App\Cache\Type\FrontendPool
Definition:
FrontendPool.php:17
Magento\Framework\DB\Adapter\DdlCache\CACHE_TAG
const CACHE_TAG
Definition:
DdlCache.php:25
Magento\Framework\DB\Adapter
Definition:
AdapterInterface.php:6
Magento\Framework\DB\Adapter\DdlCache
Definition:
DdlCache.php:15
Magento\Framework\DB\Adapter\DdlCache\TYPE_IDENTIFIER
const TYPE_IDENTIFIER
Definition:
DdlCache.php:20
Magento\Framework\Cache\Frontend\Decorator\TagScope
Definition:
TagScope.php:15
Magento\Framework\DB\Adapter\DdlCache\__construct
__construct(FrontendPool $cacheFrontendPool)
Definition:
DdlCache.php:32