CONTROL_UPGRADE::table_belong PHP Метод

table_belong() приватный Метод

private table_belong ( )
    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));
    }