<?php
# This file is a part of CodingTeam. See <http://www.codingteam.net>.
# Copyright (C) 2007-2010 CodingTeam (See AUTHORS and THANKS for details)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, version 3 only.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
// Get the time (to calcul execution time)
$start_time = microtime(true);
// Reports all errors
error_reporting(E_ALL | E_STRICT);
// Set Unicode (utf-8) as default encoding for strings manipulation
mb_internal_encoding('UTF-8');
// Include the CodingTeam class
$basedir = dirname(__FILE__);
require($basedir.'/inc/classes/codingteam.php');
// Start CodingTeam!
new CodingTeam($basedir, $start_time);
?>