blob: 3baba35afee01191083385152f1793d88d8e7ad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* @var boolean $enabled
* @var array $types
* @var array $config
* @var string $cache
*/
?>
<div id="cache-admin-container">
<cache-administration :cache-types='<?= htmlReady(json_encode($types)) ?>' current-cache="<?= htmlReady($cache) ?>"
:current-config='<?= htmlReady(json_encode($config)) ?>'></cache-administration>
</div>
|