Make JS,CSS,IMAGES conditionally defined.

This allows app's to redefine these constants as necessary.
This makes these constants consistent with their *_URL relatives.
Fixes #GH-1170
This commit is contained in:
mark_story 2013-04-01 21:59:41 -04:00
parent 7b90542230
commit 3a06dc5e1c

View file

@ -62,17 +62,23 @@ if (!defined('APP')) {
/**
* Path to the public CSS directory.
*/
if (!defined('CSS')) {
define('CSS', WWW_ROOT . 'css' . DS);
}
/**
* Path to the public JavaScript directory.
*/
if (!defined('JS')) {
define('JS', WWW_ROOT . 'js' . DS);
}
/**
* Path to the public images directory.
*/
if (!defined('IMAGES')) {
define('IMAGES', WWW_ROOT . 'img' . DS);
}
/**
* Path to the tests directory.