-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
51 lines (37 loc) · 1.06 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
/**
* dbox :: index.php
*
* Home page, where the current tasks are shown.
*
* @package dbox
* @copyright (C) 2006-2010, 2011-2012 Gordon P. Hemsley
* @license docs/LICENSE Mozilla Public License, v. 2.0
*/
/**
* Define the path to the root directory, relative to this file.
*/
define( 'ROOT', './' );
define( 'THIS_FILE', 'index.php' );
/**
* Specify the title of the page and the tab currently highlighted.
*/
$page_title = array( 'Home' );
$tab = 'home';
require( ROOT . 'inc/inc.main.php' );
/**
* Include the style header, required for proper page output.
*/
include( ROOT . 'style/header.php' );
require( ROOT . 'inc/lib/lib.home.php' );
$dbox = new Home();
?>
<!--p style="width: 50%; margin: auto; border: 3px double black; text-align: center;">I haven't decided what to put here yet.<br />Proceed to the <a href="<?php print ROOT; ?>records.php">Records</a> page.</p-->
<h2>Your Recent Changes</h2>
<?php
$dbox->get_my_changes();
/**
* Include the style footer, required for proper page output.
*/
include( ROOT . 'style/footer.php' );
?>