-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmaintenance_new.php
More file actions
55 lines (43 loc) · 1.56 KB
/
maintenance_new.php
File metadata and controls
55 lines (43 loc) · 1.56 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
<?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.new");
if($settings->find("site_closed") == "0"){
header("Location: ".PATH."/"); exit;
}
require_once('./templates/maintenance_new_header.php');
?>
<div id="container">
<div id="content">
<div id="header" class="clearfix">
<h1><span></span></h1>
</div>
<div id="process-content">
<div class="fireman">
<h1><?php echo $lang->loc['maintenance.break']; ?></h1>
<p>
<?php echo $lang->loc['maintenance.desc']; ?>
</p>
</div>
<?php if($settings->find("maintenance_twitter") != ""){ ?>
<div class="tweet-container">
<h2><?php echo $lang->loc['twitter.title']; ?></h2>
<div class="tweet"></div>
</div>
<?php } ?>
<?php require_once('./templates/maintenance_new_footer.php'); ?>