CONTROL_INSTALL::ctl_ext PHP Method

ctl_ext() public method

public ctl_ext ( )
    function ctl_ext()
    {
        $this->obj_tpl->tplDisplay("install_ext.tpl", $this->tplData);
        return array("alert" => "y030403");
    }

Usage Example

Esempio n. 1
0
        }
        break;
    case "dbtable":
        $arr_installRow = $ctl_install->ctl_dbtable();
        if ($arr_installRow["alert"] != "y030404") {
            header("Location: " . BG_URL_INSTALL . "ctl.php?mod=alert&act_get=show&alert=" . $arr_installRow["alert"]);
            exit;
        }
        break;
    case "over":
        $arr_installRow = $ctl_install->ctl_over();
        if ($arr_installRow["alert"] != "y030404") {
            header("Location: " . BG_URL_INSTALL . "ctl.php?mod=alert&act_get=show&alert=" . $arr_installRow["alert"]);
            exit;
        }
        break;
    case "dbconfig":
        $arr_installRow = $ctl_install->ctl_dbconfig();
        if ($arr_installRow["alert"] != "y030403") {
            header("Location: " . BG_URL_INSTALL . "ctl.php?mod=alert&act_get=show&alert=" . $arr_installRow["alert"]);
            exit;
        }
        break;
    default:
        $arr_installRow = $ctl_install->ctl_ext();
        if ($arr_installRow["alert"] != "y030403") {
            header("Location: " . BG_URL_INSTALL . "ctl.php?mod=alert&act_get=show&alert=" . $arr_installRow["alert"]);
            exit;
        }
        break;
}