-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmaintenance.php
More file actions
88 lines (70 loc) · 2.59 KB
/
maintenance.php
File metadata and controls
88 lines (70 loc) · 2.59 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/*================================================================+\
|| # PHPRetro - An extendable virtual hotel site and management
|+==================================================================
|| # Copyright (C) 2009 Yifan Lu. All rights reserved.
|| # http://www.yifanlu.com
|| # Parts Copyright (C) 2009 Meth0d. All rights reserved.
|| # http://www.meth0d.org
|| # All images, scripts, and layouts
|| # Copyright (C) 2009 Sulake Ltd. All rights reserved.
|+==================================================================
|| # PHPRetro is provided "as is" and comes without
|| # warrenty of any kind. PHPRetro is free software!
|| # License: GNU Public License 3.0
|| # http://opensource.org/licenses/gpl-license.php
\+================================================================*/
$page['id'] = "maintenance";
require_once('./includes/core.php');
$lang->addLocale("maintenance");
if($settings->find("site_closed") == "0"){
header("Location: ".PATH."/"); exit;
}
if($settings->find("maintenance_style") == "1"){
require("./maintenance_new.php"); exit;
}
require_once('./templates/maintenance_header.php');
?>
<div id="page-container">
<div id="header-container">
</div>
<div id="maintenance-container">
<div id="content-container">
<div id="inner-container">
<div id="left_col">
<!-- bubble -->
<div class="bubble">
<div class="bubble-body">
<img src="<?php echo PATH; ?>/web-gallery/maintenance/alert_triangle.gif" width="30" height="29" alt="" border="0" align="left" class="triangle" />
<b><?php echo $lang->loc['text.1']; ?></b>
<div class="clear"></div>
</div>
</div>
<div class="bubble-bottom">
<div class="bubble-bottom-body">
<img src="<?php echo PATH; ?>/web-gallery/maintenance/bubble_tail_left.gif" alt="" width="22" height="31" />
</div>
</div>
<!-- \bubble -->
<img src="<?php echo PATH; ?>/web-gallery/maintenance/frank_habbo_down.gif" width="57" height="87" alt="" border="0" />
</div>
<div id="right_col">
<!-- bubble -->
<div class="bubble">
<div class="bubble-body">
<?php echo $lang->loc['text.2']; ?>
<div class="clear"></div>
</div>
</div>
<div class="bubble-bottom">
<div class="bubble-bottom-body">
<img src="<?php echo PATH; ?>/web-gallery/maintenance/bubble_tail_left.gif" alt="" width="22" height="31" />
</div>
</div>
<!-- \bubble -->
<img src="<?php echo PATH; ?>/web-gallery/maintenance/workman_habbo_down.gif" width="125" height="118" alt="" border="0" />
</div>
</div>
</div>
</div>
<?php require_once('./templates/maintenance_footer.php'); ?>