| 1 | | <?php |
| 2 | | include("./common.php"); |
| 3 | | ?> |
| 4 | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 5 | | <html xmlns="http://www.w3.org/1999/xhtml"> |
| 6 | | <head> |
| 7 | | <?php |
| 8 | | echo <<<HEAD |
| 9 | | <meta http-equiv="Content-Type" content="text/html; charset=$config[charset]" /> |
| 10 | | <meta http-equiv="Content-Language" content="$config[lang]" /> |
| 11 | | <script type="text/javascript" src="tablesort.js" charset="$config[charset]"></script> |
| 12 | | HEAD; |
| 13 | | ?> |
| 14 | | |
| 15 | | <link rel="stylesheet" type="text/css" href="xcache.css" /> |
| 16 | | <title><?php echo _('XCache Help'); ?></title> |
| 17 | | <script> |
| 18 | | function toggle(o) |
| 19 | | { |
| 20 | | o.style.display = o.style.display != 'block' ? 'block' : 'none'; |
| 21 | | } |
| 22 | | </script> |
| 23 | | </head> |
| 24 | | |
| 25 | | <body> |
| 26 | | <h1><?php echo _('XCache Help'); ?></h1> |
| 27 | | <div id1="help"> |
| 28 | | <?php include(get_language_file("help")); ?> |
| | 1 | <?php include "../common/header.tpl.php"; ?> |
| | 2 | <div class="switcher"><?php echo switcher("do", $doTypes); ?></div> |
| | 3 | <?php if (ini_get("xcache.test")) { ?> |
| | 4 | <form method="post" action=""> |
| | 5 | <div> |
| | 6 | <input type="submit" name="coredump" value="Test coredump" class="submit" onclick="return confirm('<?php echo _('Sure?'); ?>');" /> |
| | 7 | </div> |
| | 8 | </form> |
| | 9 | <?php } ?> |
| | 10 | <div id="help"> |
| | 11 | <?php include get_language_file("help"); ?> |