-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.php
38 lines (26 loc) · 1.46 KB
/
Main.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
<?php
// CONSTANTS
// DO NOT EDIT
/////////////////////////////////////////////////////////////////////////////////////////////
define("FRAMEWORK_VERSION", "1.0");
define('FRAMEWORK_ROOT', realpath( dirname( __FILE__ ) ) );
define('FRAMEWORK_CORE_PHP_ROOT', FRAMEWORK_ROOT."/core/src/php/" );
define('FRAMEWORK_CORE_PHP_CLASS_NAME', "Framework" );
define('FRAMEWORK_APPLICATION_PHP_ROOT', FRAMEWORK_ROOT."/application/src/php/" );
define('FRAMEWORK_URL', get_bloginfo("template_url").str_replace(get_template_directory(), "", FRAMEWORK_ROOT));
define('FRAMEWORK_LIBS_PHP_ROOT', FRAMEWORK_ROOT."/libs/php/" );
/////////////////////////////////////////////////////////////////////////////////////////////
// SETTINGS
/////////////////////////////////////////////////////////////////////////////////////////////
define('DEVELOPMENT_MODE', TRUE);
define('DEBUG_MODE', TRUE);
/////////////////////////////////////////////////////////////////////////////////////////////
// IMPORTS
/////////////////////////////////////////////////////////////////////////////////////////////
require_once( FRAMEWORK_CORE_PHP_ROOT . FRAMEWORK_CORE_PHP_CLASS_NAME . '.php' );
/////////////////////////////////////////////////////////////////////////////////////////////
// START APPLICATION
/////////////////////////////////////////////////////////////////////////////////////////////
Framework::init();
/////////////////////////////////////////////////////////////////////////////////////////////
?>