Changeset 107
- Timestamp:
- 08/27/2006 10:48:14 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
admin/xcache.css (modified) (1 diff)
-
admin/xcache.php (modified) (1 diff)
-
admin/xcache.tpl.php (modified) (2 diffs)
-
xcache.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/xcache.css
r60 r107 16 16 .switcher a.active { font-weight: bold; font-size: 130%; color: black; } 17 17 #help { display: block; float: right; } 18 .footnote { text-align: right; font-size: 12px; } -
trunk/admin/xcache.php
r84 r107 189 189 $type_var = XC_TYPE_VAR; 190 190 $types = array($type_none => 'Statistics', $type_php =>'List PHP', $type_var =>'List Var Data'); 191 $xcache_version = XCACHE_VERSION; 192 $xcache_modules = XCACHE_MODULES; 191 193 192 194 include("xcache.tpl.php"); -
trunk/admin/xcache.tpl.php
r84 r107 11 11 12 12 <link rel="stylesheet" type="text/css" href="xcache.css" /> 13 <title>XCache Administration</title>13 <title>XCache <?php echo $xcache_version; ?> Administration</title> 14 14 </head> 15 15 16 16 <body> 17 <h1>XCache Administration</h1>17 <h1>XCache <?php echo $xcache_version; ?> Administration</h1> 18 18 <a href="help.php" target="_blank" id="help">Help »</a> 19 19 <span class="switcher"><?php echo switcher("type", $types); ?></span> … … 237 237 } 238 238 ?> 239 <div class="footnote"> 240 <?php echo <<<EOS 241 Powered By: {$xcache_version}, {$xcache_modules} 242 EOS; 243 ?> 244 </div> 245 239 246 </body> 240 247 </html> -
trunk/xcache.c
r105 r107 948 948 zend_register_long_constant(ZEND_STRS("XC_TYPE_PHP"), XC_TYPE_PHP, CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC); 949 949 zend_register_long_constant(ZEND_STRS("XC_TYPE_VAR"), XC_TYPE_VAR, CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC); 950 zend_register_stringl_constant(ZEND_STRS("XCACHE_VERSION"), ZEND_STRS(XCACHE_VERSION), CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC); 951 zend_register_stringl_constant(ZEND_STRS("XCACHE_MODULES"), ZEND_STRS(XCACHE_MODULES), CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC); 950 952 return 0; 951 953 }

