本文整理匯總了PHP中CGlobal::gBContent方法的典型用法代碼示例。如果您正苦於以下問題:PHP CGlobal::gBContent方法的具體用法?PHP CGlobal::gBContent怎麽用?PHP CGlobal::gBContent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CGlobal
的用法示例。
在下文中一共展示了CGlobal::gBContent方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: checkItem
static function checkItem()
{
//check trạng thái và quyền xem của Item: chỉ đc chạy trong trong hàm khởi tạo lớp của từng Module
if (!Item::$item || Item::$item && Item::$item['status'] == -1) {
//Ko index đối với SEO
header("HTTP/1.0 404 Not Found");
CGlobal::$robotContent = "NOINDEX, FOLLOW";
CGlobal::$gBContent = "noindex,follow";
}
if (Item::$item) {
Item::$item['display'] = 1;
//Check trạng thái tin và quyền thao tác:
if (Item::$item['status'] != 1) {
//Tin bị kiểm duyệt
if (!User::have_permit(ADMIN_ITEM)) {
Item::$item['display'] = 0;
}
}
}
}
示例2: checkItem
static function checkItem()
{ //check trạng thái và quyền xem của Item: chỉ đc chạy trong trong hàm khởi tạo lớp của từng Module
if (!Item::$item || (Item::$item && Item::$item['status'] == -1)) {
//Ko index đối với SEO
header("HTTP/1.0 404 Not Found");
CGlobal::$robotContent = "NOINDEX, FOLLOW";
CGlobal::$gBContent = "noindex,follow";
}
if (Item::$item) {
Item::$item['display'] = 1;
//Check trạng thái tin và quyền thao tác:
if (Item::$item['status'] != 1) { //Tin bị kiểm duyệt
//Nếu tin bị ẩn || kiểm duyệt || tin ko trung thực || tin chưa được chứng thực trong danh mục yêu cầu chứng thực =>> chỉ admin hoặc chủ tin được xem!
// theo doi tin ko trung thuc
if ((in_array(Item::$item['status'], array(0, 2, 3, 5))) && User::id() != Item::$item['user_id'] && !User::have_permit(ADMIN_ITEM) && !User::have_cat_permit(Item::$item['category_id'])) {
Item::$item['display'] = 0;
} elseif (Item::$item['status'] == -1 && !User::have_permit(ADMIN_ITEM)) { //Nếu tin ở trạng thái xóa
Item::$item['display'] = 0;
}
}
$user_info = User::getUser(Item::$item['user_id']);
if (!$user_info && !User::have_permit(ADMIN_ITEM)) { //Nếu thành viên ko tồn tại
Item::$item['display'] = 0;
}
}
}