Allow setting path constants in app/Console/cake.php as you can in webroot/index.php

This commit is contained in:
ADmad 2013-08-11 22:55:20 +05:30
parent f63aa922f6
commit 8150b89aba

View file

@ -122,8 +122,10 @@ class ShellDispatcher {
define('ROOT', $this->params['root']); define('ROOT', $this->params['root']);
define('APP_DIR', $this->params['app']); define('APP_DIR', $this->params['app']);
define('APP', $this->params['working'] . DS); define('APP', $this->params['working'] . DS);
define('WWW_ROOT', APP . $this->params['webroot'] . DS); if (!defined('WWW_ROOT')) {
if (!is_dir(ROOT . DS . APP_DIR . DS . 'tmp')) { define('WWW_ROOT', APP . $this->params['webroot'] . DS);
}
if (!defined('TMP') && !is_dir(APP . 'tmp')) {
define('TMP', CAKE_CORE_INCLUDE_PATH . DS . 'Cake' . DS . 'Console' . DS . 'Templates' . DS . 'skel' . DS . 'tmp' . DS); define('TMP', CAKE_CORE_INCLUDE_PATH . DS . 'Cake' . DS . 'Console' . DS . 'Templates' . DS . 'skel' . DS . 'tmp' . DS);
} }
$boot = file_exists(ROOT . DS . APP_DIR . DS . 'Config' . DS . 'bootstrap.php'); $boot = file_exists(ROOT . DS . APP_DIR . DS . 'Config' . DS . 'bootstrap.php');