當前位置: 首頁>>代碼示例>>PHP>>正文


PHP AlladinController類代碼示例

本文整理匯總了PHP中AlladinController的典型用法代碼示例。如果您正苦於以下問題:PHP AlladinController類的具體用法?PHP AlladinController怎麽用?PHP AlladinController使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了AlladinController類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * コンストラクタ
  */
 public function __construct(&$core)
 {
     parent::__construct($core);
     // 拡張モデルを定義します
     $path = ABS_MODEL . 'alladinExtend/';
     $ankenId = $this->_extendAnkenId;
     $path .= "{$ankenId}/result/client_report_result_{$ankenId}_model.php";
     $className = "result_client_report_result_{$ankenId}_model";
     $this->setExtendModel($path, $className);
 }
開發者ID:,項目名稱:,代碼行數:13,代碼來源:

示例2: output

 /**
  * ファイル出力
  */
 protected function output(&$data, $key)
 {
     if ($this->_isDownload == false) {
         // ページ表示
         parent::output($data, $key);
     } else {
         // ファイルダウンロード
         $smarty =& $this->_core->getSmarty();
         $smarty->assign($data);
         $ankenId = $this->_extendAnkenId;
         $path = $this->_core->getTmplName("alladinExtend/{$ankenId}/result/download/csv_media_report_all_{$ankenId}");
         $output = $smarty->fetch($path);
         $output = mb_convert_encoding($output, 'shift-jis', 'utf-8');
         $filename = "report_all.csv";
         header("Content-disposition: attachment; filename={$filename}\n");
         header('Content-type: application/octet-stream\\n\\n');
         echo $output;
         exit;
     }
 }
開發者ID:,項目名稱:,代碼行數:23,代碼來源:


注:本文中的AlladinController類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。