aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/cache/settings.php
blob: cf022d4d93086a331c18d2193d878ca15f5cf49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * @var boolean $enabled
 * @var array $types
 * @var array $config
 * @var string $cache
 */
?>
<? if ($enabled) : ?>
    <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>
<? endif;