diff options
| author | 2013-12-23 13:22:50 +0100 | |
|---|---|---|
| committer | 2013-12-23 13:22:50 +0100 | |
| commit | 24d9d1628d673f68fa0cc7b98a3ef9a8d021b070 (patch) | |
| tree | 2d794dc100d707e53b82a2de7d84b3d13103e461 /constants.php | |
| parent | 75096e6a39fe5d34d3951991f296f616e62a9fd8 (diff) | |
| parent | 9e46c1ee7fc7f9ad9e2c07f0cf826573dd4c9766 (diff) | |
Fusion 0.7-dev
Diffstat (limited to 'constants.php')
| -rw-r--r-- | constants.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/constants.php b/constants.php new file mode 100644 index 000000000..05d60b242 --- /dev/null +++ b/constants.php @@ -0,0 +1,13 @@ +<?php +define('FRESHRSS_VERSION', '0.7-dev'); +define('FRESHRSS_WEBSITE', 'http://marienfressinaud.github.io/FreshRSS/'); + +// Constantes de chemins +define ('FRESHRSS_PATH', realpath (dirname (__FILE__))); +define ('PUBLIC_PATH', FRESHRSS_PATH . '/public'); +define ('DATA_PATH', FRESHRSS_PATH . '/data'); +define ('LIB_PATH', FRESHRSS_PATH . '/lib'); +define ('APP_PATH', FRESHRSS_PATH . '/app'); + +define ('LOG_PATH', DATA_PATH . '/log'); +define ('CACHE_PATH', DATA_PATH . '/cache'); |
