本文整理汇总了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;
}
}
}