mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 12:36:25 +00:00
19 lines
594 B
PHP
19 lines
594 B
PHP
![]() |
<?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/')
|
||
|
|
||
|
?>
|