Files
EasySoft-ZenTaoPMS/test/ztest
T

19 lines
289 B
PHP
Executable File

#!/usr/bin/env php
<?php
include 'lib/utils.php';
if(count($argv) <= 1) die(printUsage());
switch($argv[1])
{
case 'init':
zdRun('data');
break;
case 'control':
ztfRun('control');
break;
case 'model':
ztfRun('model');
break;
}