aboutsummaryrefslogtreecommitdiff
path: root/index.php
blob: d6280da4880d14bc7c95628c7ff4cd8381291247 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/**
 *  DO NOT MOVE THESE DEFINES 
 */
define('BAYONET_ROOT', basename(dirname('.')));
define('BAYONET_INCLUDE', BAYONET_ROOT . '/include');
define('BAYONET_CONFIG', BAYONET_ROOT . '/include/config.ini');

require BAYONET_INCLUDE . '/debug.php';
require BAYONET_INCLUDE . '/sql.class.php';
require BAYONET_INCLUDE . '/functions.php';
require_once BAYONET_INCLUDE . '/classes.php';

/* Initialize Bayonet CMS */
Bayonet::init();


?>