Changeset 373 for branches/1.2/admin/xcache.tpl.php
- Timestamp:
- 05/05/2007 10:40:31 AM (21 months ago)
- Location:
- branches/1.2
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
admin/xcache.tpl.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2
- Property svnmerge-integrated changed from /trunk:1-302 to /trunk:1-302,371
-
branches/1.2/admin/xcache.tpl.php
r364 r373 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <?php 5 echo <<<HEAD 6 <meta http-equiv="Content-Type" content="text/html; charset=$charset" /> 7 <meta http-equiv="Content-Language" content="$lang" /> 8 <script type="text/javascript" src="tablesort.js" charset="$charset"></script> 9 HEAD; 10 ?> 11 12 <link rel="stylesheet" type="text/css" href="xcache.css" /> 13 <title><?php echo sprintf(_T("XCache %s Administration"), $xcache_version); ?></title> 14 </head> 15 16 <body> 17 <h1><?php echo sprintf(_T("XCache %s Administration"), $xcache_version); ?></h1> 1 <?php include("header.tpl.php"); ?> 18 2 <a href="help.php" target="_blank" id="help"><?php echo _T("Help") ?> »</a> 19 3 <span class="switcher"><?php echo switcher("type", $types); ?></span> … … 143 127 ?> 144 128 129 <form action="" method="post"> 145 130 <table cellspacing="0" cellpadding="4" class="cycles entrys" width="100%"> 146 131 <col /> 147 132 <col /> 133 <col /> 148 134 <col align="right" /> 149 135 <col align="right" /> … … 166 152 ?> 167 153 154 <?php if (!$isphp) { ?> 155 <th width="20">R</th> 156 <?php } ?> 168 157 <th><a href="javascript:" onclick="resort(this); return false"><?php echo _T('Cache'); ?></a></th> 169 158 <th><a href="javascript:" onclick="resort(this); return false"><?php echo _T('entry'); ?></a></th> … … 206 195 } 207 196 197 if (!$isphp) { 198 echo <<<ENTRY 199 <td><input type="checkbox" name="remove[]" value="{$name}"/></td> 200 ENTRY; 201 $uname = urlencode($entry['name']); 202 $namelink = "<a href=\"edit.php?name=$uname\">$name</a>"; 203 } 204 else { 205 $namelink = $name; 206 } 207 208 208 echo <<<ENTRY 209 209 <td>{$entry['cache_name']} {$i}</td> 210 <td>{$name }</td>210 <td>{$namelink}</td> 211 211 <td int="{$entry['hits']}">{$entry['hits']}</td> 212 212 <td int="{$entry['refcount']}">{$entry['refcount']}</td> … … 242 242 243 243 </table> 244 <input type="submit" value="<?php echo _T("Remove Selected"); ?>"> 245 </form> 244 246 <?php 245 247 } … … 256 258 } 257 259 ?> 258 <div class="footnote"> 259 <?php echo <<<EOS 260 Powered By: XCache {$xcache_version}, {$xcache_modules} 261 EOS; 262 ?> 263 </div> 264 265 </body> 266 </html> 260 <?php include("footer.tpl.php"); ?>

