forked from wizardspro/anticramsms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
172 lines (142 loc) · 4.5 KB
/
index.php
File metadata and controls
172 lines (142 loc) · 4.5 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
/**
*---------------------------------------------------------------
* Human Resource Training and Management System (HRTMS) for AMI
*---------------------------------------------------------------
*
* A thesis project that allows AMI to get a jumpstart in managing
* their application, training and deployment processes.
*
* VERSION 3.0:
* Every line of codes are re-thought, re-designed and re-developed
* to increase the reliability and performance of this application.
*
* @package HRTMS Version 3.0
* @author HRTMS Dev Team
* @copyright You have the right to copy (c) 2012-2013
* @license Wait. What?
* @link http://www.github.com/jemnuine/HRTMS
* @since Version 1.0
* @why? RD
* @feels :(
* @filesource
*/
/*
*---------------------------------------------------------------
* HRTMS CUSTOM CONFIGURATION
*---------------------------------------------------------------
*/
// Set default timezone
define('TIMEZONE', 'Asia/Manila');
// Set environment constants
// Use dev_mode to switch on the error_reporting
//test_mode switch of error reporting
// launch_mode to hide error_reporting
define('ENVIRONMENT', 'dev_mode');
//Toggle Profiler to all controllers, TRUE/FALSE
define('PROFILER_MODE', FALSE);
// Define core application
define('ENGINE', 'sms_engine');
// Define database constants
define('DB_NAME', '_sms');
define('DB_HOST', '127.0.0.1');
define('DB_USER', 'root');
define('DB_PASS', '');
// Set the application base_url()
define('BASE_URL', '');
//Set default controller
define('DEFAULT_CONTROLLER', 'home');
// Define system path
$system_path = ENGINE.'/CI';
// Define system path
$application_path = ENGINE.'/application';
/*
* ---------------------------------------------------------------
* Load the custom environment
* ---------------------------------------------------------------
*/
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'dev_mode':
error_reporting(E_ALL);
break;
case 'test_mode':
error_reporting(0);
break;
case 'launch_mode':
error_reporting(0);
break;
default:
exit('The application environment is not set correctly.');
}
}
// Set timezone
if(function_exists('date_default_timezone_set')) {
date_default_timezone_set(TIMEZONE);
}
// --------------------------------------------------------------------
// END OF USER CONFIGURABLE SETTINGS. DO NOT EDIT BELOW THIS LINE
// --------------------------------------------------------------------
/*
* ---------------------------------------------------------------
* Resolve the system path for increased reliability
* ---------------------------------------------------------------
*/
// Set the current directory correctly for CLI requests
if (defined('STDIN'))
{
chdir(dirname(__FILE__));
}
if (realpath($system_path) !== FALSE)
{
$system_path = realpath($system_path).'/';
}
// ensure there's a trailing slash
$system_path = rtrim($system_path, '/').'/';
// Is the system path correct?
if ( ! is_dir($system_path))
{
exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME));
}
/*
* -------------------------------------------------------------------
* Now that we know the path, set the main path constants
* -------------------------------------------------------------------
*/
// The name of THIS file
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
// The PHP file extension
// this global constant is deprecated.
define('EXT', '.php');
// Path to the system folder
define('BASEPATH', str_replace("\\", "/", $system_path));
// Path to the front controller (this file)
define('FCPATH', str_replace(SELF, '', __FILE__));
// Name of the "system folder"
define('SYSDIR', trim(strrchr(trim(BASEPATH, '/'), '/'), '/'));
// The path to the "application" folder
if (is_dir($application_path))
{
define('APPPATH', $application_path.'/');
}
else
{
if ( ! is_dir(BASEPATH.$application_path.'/'))
{
exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
}
define('APPPATH', BASEPATH.$application_path.'/');
}
/*
* --------------------------------------------------------------------
* LOAD THE BOOTSTRAP FILE
* --------------------------------------------------------------------
*
* And away we go...
*
*/
require_once BASEPATH.'core/CodeIgniter.php';
/* End of file index.php */
/* Location: ./index.php */