www.gusucode.com > DEDECMS精简版 织梦CMS系统企业精简版 v3.0.1.2源码程序 > cloudcms_v3.0.1.2/cloud/sys_group_add.php

    <?php

require_once(dirname(__FILE__)."/config.php");
CheckPurview('sys_Group');
if(!empty($dopost))
{
    $row = $dsql->GetOne("SELECT * FROM #@__admintype WHERE rank='".$rankid."'");
    if(is_array($row))
    {
        ShowMsg('你所创建的组别的级别值已存在,不允许重复!', '-1');
        exit();
    }
    if($rankid > 10)
    {
        ShowMsg('组级别值不能大于10, 否则一切权限设置均无效!', '-1');
        exit();
    }
    $AllPurviews = '';
    if(is_array($purviews))
    {
        foreach($purviews as $pur)
        {
            $AllPurviews = $pur.' ';
        }
        $AllPurviews = trim($AllPurviews);
    }
    $dsql->ExecuteNoneQuery("INSERT INTO #@__admintype(rank,typename,system,purviews) VALUES ('$rankid','$groupname', 0, '$AllPurviews');");
    ShowMsg("成功创建一个新的用户组!", "sys_group.php");
    exit();
}
include DedeInclude('templets/sys_group_add.htm');