mdl_alert_table() public method

修改表 mdl_alert_table function.
public mdl_alert_table ( ) : void
return void
Ejemplo n.º 1
0
 private function table_belong()
 {
     include_once BG_PATH_MODEL . "belong.class.php";
     //载入管理帐号模型
     $_mdl_belong = new MODEL_BELONG();
     $_arr_belongCreate = $_mdl_belong->mdl_create_table();
     $_arr_belongAlert = $_mdl_belong->mdl_alert_table();
     $this->tplData["db_alert"]["belong_table_create"] = array("alert" => $_arr_belongCreate["alert"], "status" => substr($_arr_belongCreate["alert"], 0, 1));
     $this->tplData["db_alert"]["belong_table_alert"] = array("alert" => $_arr_belongAlert["alert"], "status" => substr($_arr_belongAlert["alert"], 0, 1));
 }