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
module-integration
Model
Cache
TypeIntegration.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Integration\Model\Cache
;
8
12
class
TypeIntegration
extends
\Magento\Framework\Cache\Frontend\Decorator\TagScope
13
{
17
const
TYPE_IDENTIFIER
=
'config_integration_api'
;
18
22
const
CACHE_TAG
=
'INTEGRATION_API_CONFIG'
;
23
27
public
function
__construct
(\
Magento
\Framework\
App
\Cache\
Type
\FrontendPool $cacheFrontendPool)
28
{
29
parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER),
self::CACHE_TAG
);
30
}
31
}
Magento\Integration\Model\Cache\TypeIntegration\CACHE_TAG
const CACHE_TAG
Definition:
TypeIntegration.php:22
Magento\Framework\App
Magento\Framework\Cache\Frontend\Decorator\TagScope
Definition:
TagScope.php:15
Magento\Integration\Model\Cache\TypeIntegration
Definition:
TypeIntegration.php:12
Magento
Magento\Integration\Model\Cache\TypeIntegration\__construct
__construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool)
Definition:
TypeIntegration.php:27
Magento\Integration\Model\Cache\Type
Definition:
Type.php:11
Magento\Integration\Model\Cache
Definition:
Type.php:6
Magento\Integration\Model\Cache\TypeIntegration\TYPE_IDENTIFIER
const TYPE_IDENTIFIER
Definition:
TypeIntegration.php:17