2011-12-27 13:30:44 -05:00
|
|
|
<?php
|
|
|
|
|
2011-12-28 19:33:41 -05:00
|
|
|
return array(
|
2011-12-27 16:47:27 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
*/
|
2011-12-28 19:33:41 -05:00
|
|
|
'style_path' => STATIC_LIB_PATH . '/css.php/g/',
|
2011-12-27 16:47:27 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
*/
|
2011-12-28 19:33:41 -05:00
|
|
|
'script_path' => STATIC_LIB_PATH . '/js.php/g/',
|
2011-12-27 16:47:27 -05:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default title
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Default title for webpages
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-12-28 19:33:41 -05:00
|
|
|
'default_title' => "miniMVC app",
|
2011-12-27 16:47:27 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default css group
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Default css group
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'default_css_group' => "css",
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default js group
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Default js group
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'default_js_group' => "js",
|
2011-12-27 13:30:44 -05:00
|
|
|
|
2011-12-28 19:33:41 -05:00
|
|
|
);
|