38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<?php
|
||
/**
|
||
* The control file of api of ZenTaoPMS.
|
||
*
|
||
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
|
||
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||
* @package api
|
||
* @version $Id$
|
||
* @link http://www.zentao.net
|
||
*/
|
||
class api extends control
|
||
{
|
||
/* 获得sessionid。*/
|
||
public function getSessionID()
|
||
{
|
||
$this->session->set('rand', mt_rand(0, 10000));
|
||
$this->view->sessionName = session_name();
|
||
$this->view->sessionID = session_id();
|
||
$this->view->rand = $this->session->rand;
|
||
$this->display();
|
||
}
|
||
|
||
/* 获得某一个model某一个方法的结果。params的传递方式:param1=value1,param2=value2。*/
|
||
public function getModel($moduleName, $methodName, $params = '')
|
||
{
|
||
parse_str(str_replace(',', '&', $params), $params);
|
||
$module = $this->loadModel($moduleName);
|
||
$result = call_user_func_array(array(&$module, $methodName), $params);
|
||
if(dao::isError()) die(json_encode(dao::getError()));
|
||
$output['status'] = $result ? 'success' : 'fail';
|
||
$output['data'] = json_encode($result);
|
||
$output['md5'] = md5($output['data']);
|
||
$this->output = json_encode($output);
|
||
die($this->output);
|
||
}
|
||
}
|