|
Last change
on this file since 1101 was
1101,
checked in by moo, 10 months ago
|
|
devel: use gettext to scan translate string
|
-
Property svn:eol-style set to
native
|
|
File size:
656 bytes
|
| 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'] == XC_TYPE_PHP; |
|---|
| 7 | ob_start($config['path_nicer']); |
|---|
| 8 | |
|---|
| 9 | $listName = 'Cached'; |
|---|
| 10 | $entries = $entryList['cache_list']; |
|---|
| 11 | $caption = $isphp ? _T("php Cached") : _T("var Cached"); |
|---|
| 12 | include "./sub/entrylist.tpl.php"; |
|---|
| 13 | |
|---|
| 14 | $listName = 'Deleted'; |
|---|
| 15 | $caption = $isphp ? _T("php Deleted") : _T("var Deleted"); |
|---|
| 16 | $entries = $entryList['deleted_list']; |
|---|
| 17 | include "./sub/entrylist.tpl.php"; |
|---|
| 18 | |
|---|
| 19 | ob_end_flush(); |
|---|
| 20 | unset($isphp); |
|---|
| 21 | ?> |
|---|
| 22 | <?php include "../common/footer.tpl.php"; ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.