legacy/retailcrm/app.php

27 lines
522 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';
2015-11-16 17:45:35 +03:00
$options = getopt('dluce:m:p:r:h:');
2015-10-30 11:30:51 +03:00
2015-11-23 17:31:55 +03:00
if (!$options || $options == -1) {
$options = DataHelper::getOpt();
}
2015-10-30 11:30:51 +03:00
if (isset($options['e'])) {
$command = new Command($options);
$command->run();
2015-11-23 17:31:55 +03:00
} elseif (!$options) {
CommandHelper::notWorkGetOptNotice();
2015-10-30 11:30:51 +03:00
} else {
CommandHelper::runHelp();
}