summaryrefslogtreecommitdiff
path: root/constants.php
blob: 2eba868b2bfb1d8b4e402ece8fc421c416e26327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
define('FRESHRSS_VERSION', '0.7');
define('FRESHRSS_WEBSITE', 'http://freshrss.org');

// Constantes de chemins
define('FRESHRSS_PATH', dirname(__FILE__));

	define('PUBLIC_PATH', FRESHRSS_PATH . '/p');
		define('INDEX_PATH', PUBLIC_PATH . '/i');
		define('PUBLIC_RELATIVE', '..');

	define('DATA_PATH', FRESHRSS_PATH . '/data');
		define('LOG_PATH', DATA_PATH . '/log');
		define('CACHE_PATH', DATA_PATH . '/cache');

	define('LIB_PATH', FRESHRSS_PATH . '/lib');
		define('APP_PATH', FRESHRSS_PATH . '/app');