CONTROL_INSTALL::table_log PHP Method

table_log() private method

private table_log ( )
    private function table_log()
    {
        include_once BG_PATH_MODEL . "log.class.php";
        //载入管理帐号模型
        $_mdl_log = new MODEL_LOG();
        $_mdl_log->logStatus = $this->obj_tpl->status["log"];
        $_mdl_log->logTypes = $this->obj_tpl->type["log"];
        $_mdl_log->logTargets = $this->obj_tpl->type["logTarget"];
        $_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));
    }