Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/framework/Acl/Data/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/framework/Acl/Data/Cache.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\Acl\Data;

/**
 * ACL data cache layer.
 * @package Magento\Framework\Acl\Data
 */
class Cache implements CacheInterface
{
    /**
     * Acl Data cache tag.
     */
    const ACL_DATA_CACHE_TAG = 'acl_cache';

    /**
     * @var \Magento\Framework\Config\CacheInterface
     */
    private $cache;

    /**
     * @var \Magento\Framework\Acl\Builder
     */
    private $aclBuilder;

    /**
     * @var string
     */
    private $cacheTag;

    /**
     * Cache constructor.
     *
     * @param \Magento\Framework\Config\CacheInterface $cache
     * @param \Magento\Framework\Acl\Builder $aclBuilder
     * @param string $cacheTag
     */
    public function __construct(
        \Magento\Framework\Config\CacheInterface $cache,
        \Magento\Framework\Acl\Builder $aclBuilder,
        $cacheTag = self::ACL_DATA_CACHE_TAG
    ) {
        $this->cache = $cache;
        $this->aclBuilder = $aclBuilder;
        $this->cacheTag = $cacheTag;
    }

    /**
     * {@inheritdoc}
     */
    public function test($identifier)
    {
        return $this->cache->test($identifier);
    }

    /**
     * {@inheritdoc}
     */
    public function load($identifier)
    {
        return $this->cache->load($identifier);
    }

    /**
     * {@inheritdoc}
     */
    public function save($data, $identifier, array $tags = [], $lifeTime = null)
    {
        return $this->cache->save($data, $identifier, array_merge($tags, [$this->cacheTag]), $lifeTime);
    }

    /**
     * {@inheritdoc}
     */
    public function remove($identifier)
    {
        return $this->cache->remove($identifier);
    }

    /**
     * {@inheritdoc}
     */
    public function clean($mode = \Zend_Cache::CLEANING_MODE_MATCHING_TAG, array $tags = [])
    {
        $this->aclBuilder->resetRuntimeAcl();
        return $this->cache->clean($mode, array_merge($tags, [$this->cacheTag]));
    }

    /**
     * {@inheritdoc}
     */
    public function getBackend()
    {
        return $this->cache->getBackend();
    }

    /**
     * {@inheritdoc}
     */
    public function getLowLevelFrontend()
    {
        return $this->cache->getLowLevelFrontend();
    }
}

Spamworldpro Mini