|
Revision 1101, 0.6 KB
(checked in by moo, 10 months ago)
|
|
devel: use gettext to scan translate string
|
-
Property svn:eol-style set to
native
|
| Rev | Line | |
|---|
| [1078] | 1 | <?php include "../common/header.tpl.php"; ?> |
|---|
| 2 | <div class="switcher"><?php echo switcher("do", $doTypes); ?></div> |
|---|
| 3 | <?php include "./sub/summary.tpl.php"; ?> |
|---|
| [34] | 4 | <?php |
|---|
| [1078] | 5 | $entryList = getEntryList(); |
|---|
| [1101] | 6 | $isphp = $entryList['type'] == XC_TYPE_PHP; |
|---|
| [1074] | 7 | ob_start($config['path_nicer']); |
|---|
| [34] | 8 | |
|---|
| [1074] | 9 | $listName = 'Cached'; |
|---|
| [1078] | 10 | $entries = $entryList['cache_list']; |
|---|
| [1101] | 11 | $caption = $isphp ? _T("php Cached") : _T("var Cached"); |
|---|
| [1074] | 12 | include "./sub/entrylist.tpl.php"; |
|---|
| [1038] | 13 | |
|---|
| [1074] | 14 | $listName = 'Deleted'; |
|---|
| [1101] | 15 | $caption = $isphp ? _T("php Deleted") : _T("var Deleted"); |
|---|
| [1078] | 16 | $entries = $entryList['deleted_list']; |
|---|
| [1074] | 17 | include "./sub/entrylist.tpl.php"; |
|---|
| [1072] | 18 | |
|---|
| [1074] | 19 | ob_end_flush(); |
|---|
| 20 | unset($isphp); |
|---|
| [1066] | 21 | ?> |
|---|
| [1078] | 22 | <?php include "../common/footer.tpl.php"; ?> |
|---|