cakephp2-php8/config/paths.php

19 lines
594 B
PHP
Raw Normal View History

<?PHP
define ('ROOT', '../');
define ('APP', ROOT.'app/');
define ('MODELS', APP.'models/');
define ('CONTROLLERS', APP.'controllers/');
define ('HELPERS', APP.'helpers/');
define ('VIEWS', APP.'views/');
define ('CONFIGS', ROOT.'config/');
define ('LIBS', ROOT.'libs/');
define ('PUBLIC', ROOT.'public/');
define ('TESTS', ROOT.'tests/');
define ('VENDORS', ROOT.'vendors/');
define ('CONTROLLER_TESTS',TESTS.'app/controllers/');
define ('HELPER_TESTS', TESTS.'app/helpers/');
define ('MODEL_TESTS', TESTS.'app/models/');
define ('LIB_TESTS', TESTS.'libs/')
?>