Files
EasySoft-ZenTaoPMS/bin/ztcli
T
2010-03-21 13:04:25 +00:00

67 lines
2.0 KiB
PHP
Executable File

#!/usr/bin/env php
<?php
/**
* The command router file of zentaopms.
*
* ZenTaoPMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* ZenTaoPMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with ZenTaoPMS. If not, see <http://www.gnu.org/licenses/>.
*
* @copyright Copyright: 2009-2010 Chunsheng Wang
* @author Chunsheng Wang <wwccss@263.net>
* @package ZenTaoPMS
* @version $Id$
* @link http://www.zentao.cn
*/
define('IN_SHELL', true);
/* 获取命令参数。 */
if($argc != 2)
{
die('Usage: ' . basename(__FILE__) . " <request>\n");
}
/* 包含必须的类文件。*/
chdir(dirname(__FILE__));
include '../../../framework/router.class.php';
include '../../../framework/control.class.php';
include '../../../framework/model.class.php';
include '../../../framework/helper.class.php';
/* 实例化路由对象,并加载配置,连接到数据库。*/
$app = router::createApp('pms');
$config = $app->loadConfig('common');
$dbh = $app->connectDB();
/* 设置时区。*/
$app->setTimezone();
/* 设置终端使用的语言,并加载共用的模块。*/
$app->setClientLang('zh-cn');
$lang = $app->loadLang('common');
$common = $app->loadCommon();
/* 加载相应的lib文件,并设置超全局变量的引用。*/
$app->loadClass('front', $static = true);
$app->loadClass('filter', $static = true);
$app->setSuperVars();
/* 设置PATH_INFO变量。*/
putenv('PATH_INFO=' . trim($argv[1]));
$config->requestType = 'PATH_INFO';
$config->pathType = 'clean';
$config->requestFix = '-';
/* 解析请求,加载模块。*/
$app->parseRequest();
$app->loadModule();