-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patherror.php
More file actions
74 lines (59 loc) · 3.17 KB
/
error.php
File metadata and controls
74 lines (59 loc) · 3.17 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
<?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['allow_guests'] = true;
require_once('./includes/core.php');
$lang->addLocale("community.error");
$page['id'] = "error";
$page['name'] = $lang->loc['pagename.error'];
$page['bodyid'] = "home";
require_once('./templates/community_header.php');
?>
<div id="container">
<div id="content" style="position: relative" class="clearfix">
<div id="column1" class="column">
<div class="habblet-container ">
<div class="cbb clearfix red ">
<h2 class="title"><?php echo $lang->loc['page.not.found']; ?>
</h2>
<div id="notfound-content" class="box-content">
<p class="error-text"><?php echo $lang->loc['page.not.found.error']; ?></p> <img id="error-image" src="<?php echo PATH; ?>/web-gallery/v2/images/error.gif" />
<p class="error-text"><?php echo $lang->loc['user.back.button'];?></p>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
</div>
<div id="column2" class="column">
<div class="habblet-container ">
<div class="cbb clearfix green ">
<h2 class="title"><?php echo $lang->loc['error.looking.for']; ?>
</h2>
<div id="notfound-looking-for" class="box-content">
<p><b><?php echo $lang->loc['error.option.1']; ?></b><br/>
<?php echo $lang->loc['error.choice.1']; ?> <a href="<?php echo PATH; ?>/community"><?php echo $lang->loc['error.community']; ?></a> <?php echo $lang->loc['error.page'] ?>.</p>
<p><b><?php echo $lang->loc['error.option.2']; ?></b><br/>
<?php echo $lang->loc['error.choice.2']; ?> <a href="<?php echo PATH; ?>/community"><?php echo $lang->loc['error.recommanded.rooms']; ?></a> <?php echo $lang->loc['error.list']; ?>.</p>
<p><b><?php echo $lang->loc['error.option.3']; ?></b><br/>
<?php echo $lang->loc['error.choice.3'] ?> <a href="<?php echo PATH; ?>/community"><?php echo $lang->loc['error.tags']; ?></a> <?php echo $lang->loc['error.list']; ?>.</p>
<p><b><?php echo $lang->loc['error.option.4']; ?></b><br/>
<?php echo $lang->loc['error.choice.4']; ?> <a href="<?php echo PATH; ?>/credits"><?php echo $lang->loc['error.coins']; ?></a> <?php echo $lang->loc['error.page']; ?>.</p>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
</div>
<?php require_once('templates/community_footer.php'); ?>