mdl_create_table() public method

创建表 mdl_create function.
public mdl_create_table ( ) : void
return void
コード例 #1
0
ファイル: install.class.php プロジェクト: itviewer/baigoSSO
 private function table_log()
 {
     include_once BG_PATH_MODEL . "log.class.php";
     //载入管理帐号模型
     $_mdl_log = new MODEL_LOG();
     $_arr_logTable = $_mdl_log->mdl_create_table();
     if ($_arr_logTable["alert"] != "y060105") {
         $this->obj_api->halt_re($_arr_logTable);
     }
 }
コード例 #2
0
ファイル: install.class.php プロジェクト: itviewer/baigoSSO
 private function table_log()
 {
     include_once BG_PATH_MODEL . "log.class.php";
     //载入管理帐号模型
     $_mdl_log = new MODEL_LOG();
     $_arr_logTable = $_mdl_log->mdl_create_table();
     $this->tplData["db_alert"]["log_table"] = array("alert" => $_arr_logTable["alert"], "status" => substr($_arr_logTable["alert"], 0, 1));
 }