-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_config.php
21 lines (19 loc) · 905 Bytes
/
_config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
* @author Patrick Chitovoro
*/
define('UTILITY_DIR', basename(dirname(__FILE__)));
define('PLUGINS_DIR', UTILITY_DIR . "/plugins");
define('UTILITY_BOWER_DIR', UTILITY_DIR . "/bower_components/");
define('BOOTSTRAP_DIR', UTILITY_BOWER_DIR . "bootstrap/dist");
define('JQUERY_DIR', UTILITY_BOWER_DIR . "jquery/dist");
define('JQUERY_MIGRATE_DIR', UTILITY_BOWER_DIR . "jquery-migrate");
define('JQUERY_FORM_DIR', UTILITY_BOWER_DIR . "jquery-form");
define('UNDERSCORE_DIR', UTILITY_BOWER_DIR . "underscore");
define('CHOSEN_PLUGIN_DIR', UTILITY_DIR . "/chosen");
define('MOMENT_DIR', UTILITY_BOWER_DIR . "moment");
define('CHOSEN_DIR', UTILITY_BOWER_DIR . "chosen");
define('MASONRY_DIR', UTILITY_BOWER_DIR . "masonry");
define('ISOTOPE_DIR', UTILITY_BOWER_DIR . "isotope");
define('DATA_TABLES_DIR', UTILITY_BOWER_DIR . "datatables");
define('JQUERY_UI_DIR', UTILITY_BOWER_DIR . "jquery-ui");