-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
28 lines (19 loc) · 714 Bytes
/
config.php
File metadata and controls
28 lines (19 loc) · 714 Bytes
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
<?php
$config = array(
"urls" => array(
"baseUrl" => "http://localhost/IT-Docs"
)
);
defined("LIBRARY_PATH")
or define("LIBRARY_PATH", realpath(dirname(__FILE__) . '/libraries'));
defined("FUNC_PATH")
or define("FUNC_PATH", realpath(dirname(__FILE__) . '/include/function'));
defined("VSM_PATH")
or define("VSM_PATH", realpath(dirname(__FILE__) . '/include'));
defined("TEMPLATE_PATH")
or define("TEMPLATE_PATH", realpath(dirname(__FILE__) . '/include/template'));
defined("AJAX_RES_PATH")
or define("AJAX_RES_PATH", realpath(dirname(__FILE__) . '/ajax'));
defined("ASSETS_PATH")
or define("ASSETS_PATH", realpath(dirname(__FILE__) . '/assets'));
?>