constants.php 456 B

12345678910111213
  1. <?php
  2. define('FRESHRSS_VERSION', '0.7-beta2');
  3. define('FRESHRSS_WEBSITE', 'http://freshrss.org');
  4. // Constantes de chemins
  5. define ('FRESHRSS_PATH', realpath (dirname (__FILE__)));
  6. define ('PUBLIC_PATH', FRESHRSS_PATH . '/public');
  7. define ('DATA_PATH', FRESHRSS_PATH . '/data');
  8. define ('LIB_PATH', FRESHRSS_PATH . '/lib');
  9. define ('APP_PATH', FRESHRSS_PATH . '/app');
  10. define ('LOG_PATH', DATA_PATH . '/log');
  11. define ('CACHE_PATH', DATA_PATH . '/cache');