legacy/retailcrm/app.php

23 lines
408 B
PHP
Raw Normal View History

2015-10-30 11:30:51 +03:00
<?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';
$shortopts = 'dluce:m:p:r:h:';
$options = getopt($shortopts);
2015-10-30 11:30:51 +03:00
if (isset($options['e'])) {
$command = new Command($options);
$command->run();
} else {
CommandHelper::runHelp();
}