TrackManiaControl/ManiaControl.php

48 lines
1.3 KiB
PHP
Raw Normal View History

2013-11-09 11:19:21 +01:00
<?php
2014-05-24 21:09:55 +02:00
// Enable error reporting
error_reporting(E_ALL);
// Run configuration
2014-07-28 14:50:13 +02:00
define('DEV_MODE', false); // Development mode to not send error reports etc.
define('LOG_NAME_USE_DATE', true); // Use current date as suffix for log file name in logs folder
define('LOG_NAME_USE_PID', true); // Use current process id as suffix for log file name in logs folder
2014-05-02 17:50:30 +02:00
// Define base dir
define('MANIACONTROL_PATH', __DIR__ . DIRECTORY_SEPARATOR);
/** @deprecated Use MANIACONTROL_PATH */
define('ManiaControlDir', MANIACONTROL_PATH);
2013-11-09 11:19:21 +01:00
// Set process settings
ini_set('memory_limit', '64M');
2014-05-24 20:48:32 +02:00
if (!ini_get('date.timezone') && function_exists('date_default_timezone_set')) {
date_default_timezone_set('UTC');
2013-11-09 11:19:21 +01:00
}
2014-06-17 22:15:35 +02:00
// Make sure garbage collection is enabled
gc_enable();
// Register AutoLoader
require_once MANIACONTROL_PATH . 'core' . DIRECTORY_SEPARATOR . 'AutoLoader.php';
2014-06-17 22:15:35 +02:00
\ManiaControl\AutoLoader::register();
2014-06-12 15:02:48 +02:00
2014-06-17 22:15:35 +02:00
// Setup Logger
\ManiaControl\Logger::setup();
2013-11-09 11:19:21 +01:00
2014-05-24 21:09:55 +02:00
/**
2014-06-17 22:37:34 +02:00
* @deprecated
* @see \ManiaControl\Logger::log()
2014-05-24 21:09:55 +02:00
*/
function logMessage($message, $eol = true) {
2014-06-17 22:37:34 +02:00
\ManiaControl\Logger::log($message, $eol);
}
2014-06-17 22:37:34 +02:00
\ManiaControl\Logger::log('Starting ManiaControl...');
2014-06-17 22:25:33 +02:00
// Check requirements
\ManiaControl\Utils\SystemUtil::checkRequirements();
// Start ManiaControl
2014-01-27 09:07:25 +01:00
$maniaControl = new \ManiaControl\ManiaControl();
$maniaControl->run();