44 lines
2.3 KiB
PHP
44 lines
2.3 KiB
PHP
<?php if (!defined('PICONTROL')) exit(); ?>
|
|
<div>
|
|
<div class="box">
|
|
<div class="inner-header">
|
|
<span><?php _e('Cache'); ?></span>
|
|
<?php showGoBackIcon('?s=settings'); ?>
|
|
</div>
|
|
<form action="?s=settings&do=cache" method="post">
|
|
<div class="inner-table">
|
|
<table class="table table-borderless table-form">
|
|
<tr>
|
|
<td><?php _e('Aktivieren'); ?></td>
|
|
<td><input type="checkbox" name="activation" value="checked" id="cb-activiation"<?php if ($data['cache-activation'] === true) echo ' checked="checked"'; ?> /><label for="cb-activiation" class="checkbox only-checkbox"> </label>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="inner-table overflow-auto">
|
|
<table class="table table-borderless">
|
|
<tr>
|
|
<th style="width: 5%;"></th>
|
|
<th style="width: 30%;"><?php _e('Anwendung'); ?></th>
|
|
<th style="width: 20%;" class="table-center"><?php _e('Größe'); ?></th>
|
|
<th style="width: 20%;" class="table-center"><?php _e('Letzte Änderung'); ?></th>
|
|
<th style="width: 20%;" class="table-center"><?php _e('Speicherzeit'); ?></th>
|
|
<th style="width: 5%;"></th>
|
|
</tr>
|
|
<?php foreach ($data['cache-files'] as $name => $info) { ?>
|
|
<tr>
|
|
<td><input type="checkbox" name="cb-<?php echo $name; ?>" value="checked" id="cb-<?php echo $name; ?>"<?php if (isset($info['active']) && $info['active'] === true) echo ' checked="checked"'; ?> /><label for="cb-<?php echo $name; ?>" class="checkbox only-checkbox"> </label></td>
|
|
<td><?php echo getCacheName($name); ?></td>
|
|
<td class="table-center"><?php echo (isset($info['filesize'])) ? sizeUnit($info['filesize']) : '-'; ?></td>
|
|
<td class="table-center"><?php echo (isset($info['modification'])) ? formatTime($info['modification']) : '-'; ?></td>
|
|
<td class="table-center"><input type="text" name="text-<?php echo $name; ?>" maxlength="4" style="width: 40px !important;" value="<?php echo (isset($info['lifetime'])) ? $info['lifetime'] : '0'; ?>" /> Min.</td>
|
|
<td><a href="?s=settings&do=cache&clear=<?php echo $name; ?>" class="button button-small"><?php _e('Leeren'); ?></a></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
</div>
|
|
<div class="inner-end">
|
|
<input type="submit" name="submit" value="<?php _e('Speichern'); ?>" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|