$this->cacheManager =
$this->
get(CacheManager::
class);
} /**
* Cache info action
*/
public function getInfoAction() { $data =
[ $this->cacheManager->
getConfigCacheInfo(),
$this->cacheManager->
getHttpCacheInfo($this->
Request()),
$this->cacheManager->
getTemplateCacheInfo(),
$this->cacheManager->
getThemeCacheInfo(),
$this->cacheManager->
getShopwareProxyCacheInfo(),
$this->cacheManager->
getDoctrineProxyCacheInfo(),
$this->cacheManager->
getOpCacheCacheInfo(),
];
$this->
View()->
assign([ 'success' => true,
'data' =>
$data,
'total' => \
count($data),
]);
}