本文整理汇总了PHP中DaoFactory::TanmatsuLicense方法的典型用法代码示例。如果您正苦于以下问题:PHP DaoFactory::TanmatsuLicense方法的具体用法?PHP DaoFactory::TanmatsuLicense怎么用?PHP DaoFactory::TanmatsuLicense使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DaoFactory
的用法示例。
在下文中一共展示了DaoFactory::TanmatsuLicense方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: perform
/**
* 端末マスタのデータをJSON形式で返す
* @access public
* @return array 端末マスタ
* @see Admin_ActionClass::perform()
*/
public function perform()
{
// get request params ( search )
$s_terminal_id = $this->af->get('terminal_id');
// get session params
$company_id = $this->session->get('company_id');
try {
// DAO パラメータ定義
$params = array('company_id' => $company_id, 'terminal_id' => $s_terminal_id);
// 詳細を取得
$detail = DaoFactory::TerminalMst()->Retrieve(' company_id = ? AND terminal_id = ? ', $params);
$licenses = DaoFactory::TanmatsuLicense()->GetLicenseInfo($params)->fetchAll();
unset($detail['PASSWORD']);
unset($detail['PASSWORD_KIGEN']);
$detail['LICENSE_ID'] = array();
foreach ($licenses as $record) {
$detail['LICENSE_ID'][] = array('LICENSE_ID' => $record['LICENSE_ID'], 'START_YMD' => $record['START_YMD'], 'END_YMD' => $record['END_YMD']);
}
// output にセット
$output['totalData'] = array();
$output['listData'] = $detail;
$output['pagerData'] = array();
} catch (Exception $e) {
// 致命的なエラーが発生
return array('500', $e->getMessage());
}
return array('json', $output);
}