Changeset 1101 in svn for trunk/htdocs/cacher/listentries.tpl.php
- Timestamp:
- 2012-08-01T08:00:21Z (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/cacher/listentries.tpl.php
r1078 r1101 4 4 <?php 5 5 $entryList = getEntryList(); 6 $isphp = $entryList['type'] == 'listphp'; 7 $typeName = $entryList['type_name']; 6 $isphp = $entryList['type'] == XC_TYPE_PHP; 8 7 ob_start($config['path_nicer']); 9 8 10 9 $listName = 'Cached'; 11 10 $entries = $entryList['cache_list']; 11 $caption = $isphp ? _T("php Cached") : _T("var Cached"); 12 12 include "./sub/entrylist.tpl.php"; 13 13 14 14 $listName = 'Deleted'; 15 $caption = $isphp ? _T("php Deleted") : _T("var Deleted"); 15 16 $entries = $entryList['deleted_list']; 16 17 include "./sub/entrylist.tpl.php";
Note: See TracChangeset
for help on using the changeset viewer.