|
Revision 1078, 0.6 KB
(checked in by moo, 10 months ago)
|
|
htdocs/cache: re-adds help
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <?php include "../common/header.tpl.php"; ?> |
|---|
| 2 | <div class="switcher"><?php echo switcher("do", $doTypes); ?></div> |
|---|
| 3 | <?php include "./sub/summary.tpl.php"; ?> |
|---|
| 4 | <?php |
|---|
| 5 | $entryList = getEntryList(); |
|---|
| 6 | $isphp = $entryList['type'] == 'listphp'; |
|---|
| 7 | $typeName = $entryList['type_name']; |
|---|
| 8 | ob_start($config['path_nicer']); |
|---|
| 9 | |
|---|
| 10 | $listName = 'Cached'; |
|---|
| 11 | $entries = $entryList['cache_list']; |
|---|
| 12 | include "./sub/entrylist.tpl.php"; |
|---|
| 13 | |
|---|
| 14 | $listName = 'Deleted'; |
|---|
| 15 | $entries = $entryList['deleted_list']; |
|---|
| 16 | include "./sub/entrylist.tpl.php"; |
|---|
| 17 | |
|---|
| 18 | ob_end_flush(); |
|---|
| 19 | unset($isphp); |
|---|
| 20 | ?> |
|---|
| 21 | <?php include "../common/footer.tpl.php"; ?> |
|---|