PHP Класс Xpressengine\Config\Repositories\CacheDecorator

Автор: XE Team (developers) ([email protected])
Наследование: extends Xpressengine\Config\Repositories\AbstractDecorator
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$bag array memory cache
$cache Xpressengine\Support\CacheInterface cache instance
$prefix string Prefix for cache key
$repo Xpressengine\Config\ConfigRepository repository instance

Открытые методы

Метод Описание
__construct ( Xpressengine\Config\ConfigRepository $repo, Xpressengine\Support\CacheInterface $cache ) create instance
affiliate ( ConfigEntity $config, string $to ) : void affiliated to another config
clearLike ( ConfigEntity $config, array $excepts = [] ) : void clear all just descendants vars
fetchAncestor ( string $siteKey, string $name ) : array search ancestors getter
fetchDescendant ( string $siteKey, string $name ) : array search descendants getter
find ( string $siteKey, string $name ) : ConfigEntity search getter
foster ( ConfigEntity $config, string $to ) : void Parent Changing with descendant
remove ( string $siteKey, string $name ) : void remove
save ( ConfigEntity $config ) : ConfigEntity save

Защищенные методы

Метод Описание
erase ( string $siteKey, string $name ) : void Remove cache data
getCacheKey ( string $keyword ) : string String for cache key
getData ( string $siteKey, string $head ) : array get cached data
makeKey ( string $siteKey, string $name ) : string Make key by combination of site key and config name

Приватные методы

Метод Описание
getHead ( string $name ) : array parse name to head and segments

Описание методов

__construct() публичный Метод

create instance
public __construct ( Xpressengine\Config\ConfigRepository $repo, Xpressengine\Support\CacheInterface $cache )
$repo Xpressengine\Config\ConfigRepository repository instance
$cache Xpressengine\Support\CacheInterface cache instance

affiliate() публичный Метод

affiliated to another config
public affiliate ( ConfigEntity $config, string $to ) : void
$config Xpressengine\Config\ConfigEntity config object
$to string parent name
Результат void

clearLike() публичный Метод

clear all just descendants vars
public clearLike ( ConfigEntity $config, array $excepts = [] ) : void
$config Xpressengine\Config\ConfigEntity config object
$excepts array target to the except
Результат void

erase() защищенный Метод

Remove cache data
protected erase ( string $siteKey, string $name ) : void
$siteKey string site key
$name string config name
Результат void

fetchAncestor() публичный Метод

search ancestors getter
public fetchAncestor ( string $siteKey, string $name ) : array
$siteKey string site key
$name string the name
Результат array

fetchDescendant() публичный Метод

search descendants getter
public fetchDescendant ( string $siteKey, string $name ) : array
$siteKey string site key
$name string the name
Результат array

find() публичный Метод

search getter
public find ( string $siteKey, string $name ) : ConfigEntity
$siteKey string site key
$name string the name
Результат Xpressengine\Config\ConfigEntity

foster() публичный Метод

Parent Changing with descendant
public foster ( ConfigEntity $config, string $to ) : void
$config Xpressengine\Config\ConfigEntity config object
$to string to config prefix
Результат void

getCacheKey() защищенный Метод

String for cache key
protected getCacheKey ( string $keyword ) : string
$keyword string keyword
Результат string

getData() защищенный Метод

get cached data
protected getData ( string $siteKey, string $head ) : array
$siteKey string site key
$head string root name
Результат array

makeKey() защищенный Метод

Make key by combination of site key and config name
protected makeKey ( string $siteKey, string $name ) : string
$siteKey string site key
$name string config name
Результат string

remove() публичный Метод

remove
public remove ( string $siteKey, string $name ) : void
$siteKey string site key
$name string the name
Результат void

save() публичный Метод

save
public save ( ConfigEntity $config ) : ConfigEntity
$config Xpressengine\Config\ConfigEntity config object
Результат Xpressengine\Config\ConfigEntity

Описание свойств

$bag защищенное свойство

memory cache
protected array $bag
Результат array

$cache защищенное свойство

cache instance
protected CacheInterface,Xpressengine\Support $cache
Результат Xpressengine\Support\CacheInterface

$prefix защищенное свойство

Prefix for cache key
protected string $prefix
Результат string

$repo защищенное свойство

repository instance
protected ConfigRepository,Xpressengine\Config $repo
Результат Xpressengine\Config\ConfigRepository