www.gusucode.com > baigo CMS PHP开源网站管理系统 v1.2.2源码程序 > baigocms_v1.2.2/bg_core/module/admin/ctl/custom.php

    <?php
/*-----------------------------------------------------------------
!!!!警告!!!!
以下为系统文件,请勿修改
-----------------------------------------------------------------*/

//不能非法包含或直接执行
if(!defined("IN_BAIGO")) {
    exit("Access Denied");
}

include_once(BG_PATH_FUNC . "init.func.php");
$arr_set = array(
    "base"          => true,
    "ssin"          => true,
    "header"        => "Content-Type: text/html; charset=utf-8",
    "db"            => true,
    "type"          => "ctl",
    "ssin_begin"    => true,
);
fn_init($arr_set);

include_once(BG_PATH_INC . "is_install.inc.php"); //验证是否已登录
include_once(BG_PATH_INC . "is_admin.inc.php"); //载入后台通用
include_once(BG_PATH_CONTROL . "admin/ctl/custom.class.php"); //载入模板类

$ctl_custom = new CONTROL_CUSTOM(); //初始化设置对象

switch ($GLOBALS["act_get"]) {
    case "form":
        $arr_customRow = $ctl_custom->ctl_form();
        if ($arr_customRow["alert"] != "y200102") {
            header("Location: " . BG_URL_ADMIN . "ctl.php?mod=alert&act_get=show&alert=" . $arr_customRow["alert"]);
            exit;
        }
    break;

    case "order":
        $arr_customRow = $ctl_custom->ctl_order();
        if ($arr_customRow["alert"] != "y200102") {
            header("Location: " . BG_URL_ADMIN . "ctl.php?mod=alert&act_get=show&alert=" . $arr_customRow["alert"] . $_url_attach);
            exit;
        }
    break;

    default:
        $arr_customRow = $ctl_custom->ctl_list();
        if ($arr_customRow["alert"] != "y200301") {
            header("Location: " . BG_URL_ADMIN . "ctl.php?mod=alert&act_get=show&alert=" . $arr_customRow["alert"]);
            exit;
        }
    break;
}