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