Objectify locale negotiator and template files, add documentation

This commit is contained in:
Vojtěch Sajdl
2018-01-07 20:39:10 +01:00
parent 9820686776
commit 61f563c9b0
20 changed files with 440 additions and 230 deletions
+3 -4
View File
@@ -1,6 +1,5 @@
<?php
require("header.php");
require("footer.php");
require("template.php");
if (!file_exists("config.php"))
{
@@ -22,7 +21,7 @@ if (isset($_GET['ajax']))
$offset = $_GET['offset'];
}
render_header("Status");
Template::render_header("Status");
?>
<div class="text-center">
<h2><?php echo _("Current status");?></h2>
@@ -47,5 +46,5 @@ render_header("Status");
</div>
<?php }
render_footer();
Template::render_footer();
}