legacy/retailcrm/app.php
Alex Lushpai a11b98a479 init
2015-10-30 11:30:51 +03:00

21 lines
381 B
PHP

<?php
if (
function_exists('date_default_timezone_set')
&&
function_exists('date_default_timezone_get')
) {
date_default_timezone_set(@date_default_timezone_get());
}
require_once 'bootstrap.php';
$options = getopt('luce:m:p:r:h:');
if (isset($options['e'])) {
$command = new Command($options);
$command->run();
} else {
CommandHelper::runHelp();
}