forked from server-status-project/server-status
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
51 lines (44 loc) · 1.08 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
if (!file_exists("config.php"))
{
require_once("template.php");
require_once("install.php");
}
else{
require_once("config.php");
require_once("template.php");
require_once("classes/constellation.php");
$offset = 0;
if (isset($_GET['ajax']))
{
$constellation->render_incidents(false,$_GET['offset'],5);
exit();
}else if (isset($_GET['offset']))
{
$offset = $_GET['offset'];
}
Template::render_header("Status");
?>
<div class="text-center">
<h2><?php echo _("Current status");?></h2>
</div>
<div id="current">
<?php $constellation->render_status();?>
</div>
<?php if ($mysqli->query("SELECT count(*) FROM status")->num_rows)
{
?>
<div id="timeline">
<div class="item">
<div class="timeline">
<div class="line text-muted"></div>
<?php
$constellation->render_incidents(true,$offset);
$constellation->render_incidents(false,$offset);
?>
</div>
</div>
</div>
<?php }
Template::render_footer();
}