本文整理匯總了PHP中CheckArcAdmin函數的典型用法代碼示例。如果您正苦於以下問題:PHP CheckArcAdmin函數的具體用法?PHP CheckArcAdmin怎麽用?PHP CheckArcAdmin使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了CheckArcAdmin函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: ShowMsg
ShowMsg("請指定文檔的欄目!", "-1");
exit;
}
if (empty($channelid)) {
ShowMsg("文檔為非指定的類型,請檢查你發布內容的表單是否合法!", "-1");
exit;
}
if (!CheckChannel($typeid, $channelid)) {
ShowMsg("你所選擇的欄目與當前模型不相符,請選擇白色的選項!", "-1");
exit;
}
if (!TestPurview('a_Edit')) {
if (TestPurview('a_AccEdit')) {
CheckCatalog($typeid, "對不起,你沒有操作欄目 {$typeid} 的文檔權限!");
} else {
CheckArcAdmin($id, $cuserLogin->getUserID());
}
}
//對保存的內容進行處理
$pubdate = GetMkTime($pubdate);
$sortrank = AddDay($pubdate, $sortup);
$ismake = $ishtml == 0 ? -1 : 0;
$autokey = 1;
//$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen,ENT_COMPAT ,"GB2312"));
$shorttitle = cn_substrR($shorttitle, 36);
$color = cn_substrR($color, 7);
$writer = cn_substrR($writer, 20);
$source = cn_substrR($source, 30);
$description = cn_substrR($description, 250);
$keywords = trim(cn_substrR($keywords, 60));
$filename = trim(cn_substrR($filename, 40));
示例2: CheckArcAdmin
if($typeid==0){
ShowMsg("請指定文檔的欄目!","-1");
exit();
}
if(empty($channelid)){
ShowMsg("文檔為非指定的類型,請檢查你發布內容的表單是否合法!","-1");
exit();
}
if(!CheckChannel($typeid,$channelid) || !CheckChannel($typeid2,$channelid)){
ShowMsg("你所選擇的欄目與當前模型不相符,請選擇白色的選項!","-1");
exit();
}
if(!TestPurview('a_Edit')) {
if(TestPurview('a_AccEdit')) CheckCatalog($typeid,"對不起,你沒有操作欄目 {$typeid} 的文檔權限!");
else CheckArcAdmin($ID,$cuserLogin->getUserID());
}
$arcrank = GetCoRank($arcrank,$typeid);
//對保存的內容進行處理
//--------------------------------
$iscommend = $iscommend + $isbold;
$pubdate = GetMkTime($pubdate);
$sortrank = AddDay($senddate,$sortup);
$endtime = $senddate + 3600 * 24 * $endtime;
$title = cn_substr($title,80);
if($keywords!="") $keywords = trim(cn_substr($keywords,60))." ";