adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / config / paths.php
1 <?php
2 /**
3  * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
4  * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5  *
6  * Licensed under The MIT License
7  * Redistributions of files must retain the above copyright notice.
8  *
9  * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10  * @link          http://cakephp.org CakePHP(tm) Project
11  * @since         3.0.0
12  * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
13  */
14
15 /**
16  * Use the DS to separate the directories in other defines
17  */
18 if (!defined('DS')) {
19     define('DS', DIRECTORY_SEPARATOR);
20 }
21
22 /**
23  * These defines should only be edited if you have cake installed in
24  * a directory layout other than the way it is distributed.
25  * When using custom settings be sure to use the DS and do not add a trailing DS.
26  */
27
28 /**
29  * The full path to the directory which holds "src", WITHOUT a trailing DS.
30  */
31 define('ROOT', dirname(__DIR__));
32
33 /**
34  * The actual directory name for the application directory. Normally
35  * named 'src'.
36  */
37 define('APP_DIR', 'src');
38
39 /**
40  * Path to the application's directory.
41  */
42 define('APP', ROOT . DS . APP_DIR . DS);
43
44 /**
45  * Path to the config directory.
46  */
47 define('CONFIG', ROOT . DS . 'config' . DS);
48
49 /**
50  * File path to the webroot directory.
51  */
52 define('WWW_ROOT', ROOT . DS . 'webroot' . DS);
53
54 /**
55  * Path to the tests directory.
56  */
57 define('TESTS', ROOT . DS . 'tests' . DS);
58
59 /**
60  * Path to the temporary files directory.
61  */
62 define('TMP', ROOT . DS . 'tmp' . DS);
63
64 /**
65  * Path to the logs directory.
66  */
67 define('LOGS', ROOT . DS . 'logs' . DS);
68
69 /**
70  * Path to the cache files directory. It can be shared between hosts in a multi-server setup.
71  */
72 define('CACHE', TMP . 'cache' . DS);
73
74 /**
75  * The absolute path to the "cake" directory, WITHOUT a trailing DS.
76  *
77  * CakePHP should always be installed with composer, so look there.
78  */
79 define('CAKE_CORE_INCLUDE_PATH', ROOT . DS . 'vendor' . DS . 'cakephp' . DS . 'cakephp');
80
81 /**
82  * Path to the cake directory.
83  */
84 define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS);
85 define('CAKE', CORE_PATH . 'src' . DS);