示例#1
0
 /**
  * table_mime function.
  *
  * @access private
  * @return void
  */
 private function table_mime()
 {
     include_once BG_PATH_MODEL . "mime.class.php";
     //载入管理帐号模型
     $_mdl_mime = new MODEL_MIME();
     $_arr_mimeRow = $_mdl_mime->mdl_create_table();
     if ($_arr_mimeRow["alert"] != "y080105") {
         $this->obj_ajax->halt_alert($_arr_mimeRow["alert"]);
     }
 }
示例#2
0
 /**
  * table_mime function.
  *
  * @access private
  * @return void
  */
 private function table_mime()
 {
     include_once BG_PATH_MODEL . "mime.class.php";
     //载入管理帐号模型
     $_mdl_mime = new MODEL_MIME();
     $_arr_mimeTable = $_mdl_mime->mdl_create_table();
     $this->tplData["db_alert"]["mime_table"] = array("alert" => $_arr_mimeTable["alert"], "status" => substr($_arr_mimeTable["alert"], 0, 1));
 }