blob: 17bbc461ecd8c33b2229be075b637eaab5f6761f (
plain) (
blame)
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
|
<?php
/**
* Bayonet Conent Management System
* Copyright (C) Joseph Hunkeler & Evan O'Connell
*
* Purpose of this software is to allow users to manage their website
* with ease and without needing to have any coding knowledge in order
* to maintain it. Visit [link] for any updates or feedback.
*/
/* Begin try/catch block */
try {
/* Setup error handing callbacks */
ob_start("fatal_error_handler");
set_error_handler("handle_error");
require_once self::$root_path . '/include/functions.php';
include self::$header;
//session_start();
?>
<div id="headerContainer">
<div id="header">
<div id="topBar">
<div id="searcher"><form method="get" id="searchform" action="">
<label class="hidden" for="s">Search for:</label>
<input type="text" value="Search Site" onfocus="this.value=''; this.onfocus=null;" name="s" id="s" />
<input type="submit" id="searchsubmit" value="GO!" />
</form></div>
<div id="today"><?php //echo date('l | F jS, Y'); ?></div>
</div><!--end topBar-->
<h1>Bayonet CMS</h1><!--end logo-->
<div id="navigation">
<?php require_once self::$root_path . '/navigation.php'; ?>
</div><!--end navigation-->
</div><!--end header-->
</div><!--end headerContainer-->
<div id="contentContainer">
<div id="content">
<?php if(!defined('BLOCK_RIGHT_DISABLE')): ?>
<div id="main">
<?php require_once 'modules.php'; ?>
</div><!--end main-->
<!-- block area RIGHT -->
<div id="sidebar">
<?php GetBlocks(BLOCK_RIGHT); ?>
</div><!--end sidebar-->
<?php endif; ?>
<?php if(defined('BLOCK_RIGHT_DISABLE')): ?>
<div id="main-full">
THIS IS SOME MAIN TEXT
<?php require_once 'modules.php'; ?>
</div><!--end main-->
<?php endif; ?>
<div class="clear"></div>
</div><!--end content-->
</div><!--end contentContainer-->
<?php include self::$footer; ?>
<?php
/* Flushing is needed by the error handler */
ob_end_flush();
} //try ^^
catch(Exception $e)
{
ReportError(
"<style>td.short{width:100%;}</style><table style=\"width:0;\"><tr><th>Code</th>" . "<td class=\"short\">" . $e->getCode() . "</td>" . "</tr><tr><th>In File</th>" . "<td class=\"short\">" . $e->getFile() . "</td>" . "</tr></table>" . $e->getLine() . " - " . $e->getMessage() . "<br/>"
);
}
?>
|