95 lines
2.6 KiB
PHP
95 lines
2.6 KiB
PHP
<?php
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Display Debug backtrace
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| If set to TRUE, a backtrace will be displayed along with php errors.
|
|
|
|
|
*/
|
|
define('SHOW_DEBUG_BACKTRACE', TRUE);
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Base Url
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the url path where the framework is located. Requires trailing
|
|
| slash.
|
|
|
|
|
*/
|
|
define('BASE_URL', $default_baseurl);
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Content Domain
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the domain used for serving content, such as css, javascript.
|
|
|
|
|
*/
|
|
define('CONTENT_DOMAIN', BASE_URL);
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Static Lib Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the path where the 'assets' directory is on the static domain.
|
|
|
|
|
*/
|
|
define('STATIC_LIB_PATH', CONTENT_DOMAIN.'assets/');
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Group Style Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the path that is used to determine the relative path to the
|
|
| stylesheet minifier. This should not need to be changed.
|
|
|
|
|
*/
|
|
define('STYLE_PATH', STATIC_LIB_PATH . 'css.php/g/');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Group Javascript Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the path that is used to determine the relative path to the
|
|
| javascript minifier. This should not need to be changed.
|
|
|
|
|
*/
|
|
define('SCRIPT_PATH', STATIC_LIB_PATH . 'js.php/g/');
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default title
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Default title for webpages
|
|
|
|
|
*/
|
|
define('DEFAULT_TITLE', "miniMVC app");
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default css group
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Default css group
|
|
|
|
|
*/
|
|
define('DEFAULT_CSS_GROUP', "css");
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default js group
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Default js group
|
|
|
|
|
*/
|
|
define('DEFAULT_JS_GROUP', "js"); |