Example #1
0
 private function table_app_belong()
 {
     include_once BG_PATH_MODEL . "appBelong.class.php";
     //载入管理帐号模型
     $_mdl_appBelong = new MODEL_APP_BELONG();
     $_arr_belongCreate = $_mdl_appBelong->mdl_create_table();
     $_arr_belongAlert = $_mdl_appBelong->mdl_alert_table();
     $this->tplData["db_alert"]["app_belong_table_create"] = array("alert" => $_arr_belongCreate["alert"], "status" => substr($_arr_belongCreate["alert"], 0, 1));
     $this->tplData["db_alert"]["app_belong_table_alert"] = array("alert" => $_arr_belongAlert["alert"], "status" => substr($_arr_belongAlert["alert"], 0, 1));
 }