approot.inc.php 245 B

123456789101112131415
  1. <?php
  2. define('APPROOT', dirname(__FILE__).'/');
  3. define('APPCONF', APPROOT.'conf/');
  4. define('ITOP_DEFAULT_ENV', 'production');
  5. if (function_exists('microtime'))
  6. {
  7. $fItopStarted = microtime(true);
  8. }
  9. else
  10. {
  11. $fItopStarted = 1000 * time();
  12. }
  13. ?>