legacy/retailcrm/app.php
2015-11-16 09:45:35 -05:00

21 lines
382 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('dluce:m:p:r:h:');
if (isset($options['e'])) {
$command = new Command($options);
$command->run();
} else {
CommandHelper::runHelp();
}