当前位置: 首页>>代码示例>>PHP>>正文


PHP auth::is_page_auth方法代码示例

本文整理汇总了PHP中auth::is_page_auth方法的典型用法代码示例。如果您正苦于以下问题:PHP auth::is_page_auth方法的具体用法?PHP auth::is_page_auth怎么用?PHP auth::is_page_auth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在auth的用法示例。


在下文中一共展示了auth::is_page_auth方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: digest_auth

function digest_auth($page, $auth_flag, $exit_flag, $auth_pages, $title_cannot)
{
    global $auth_users, $auth_method_type, $auth_type;
    global $realm;
    if (auth::is_page_auth($page, $auth_flag, $auth_pages, '', '')) {
        return true;
    }
    // No limit
    //$user_list = get_auth_page_users($page, $auth_pages);
    //if (empty($user_list)) return true; // No limit
    if (!auth::check_role('role_adm_contents')) {
        return true;
    }
    // 既にコンテンツ管理者
    if (auth::auth_digest($auth_users)) {
        return true;
    }
    // Auth failed
    if ($auth_flag || $exit_flag) {
        pkwk_common_headers();
    }
    if ($auth_flag) {
        header('HTTP/1.1 401 Unauthorized');
        header('WWW-Authenticate: Digest realm="' . $realm . '", qop="auth", nonce="' . uniqid() . '", opaque="' . md5($realm) . '"');
    }
    if ($exit_flag) {
        $body = $title = str_replace('$1', htmlspecialchars(strip_bracket($page)), $title_cannot);
        $page = str_replace('$1', make_search($page), $title_cannot);
        catbody($title, $page, $body);
        exit;
    }
    return false;
}
开发者ID:aterai,项目名称:pukiwiki-plus-i18n,代码行数:33,代码来源:auth.php

示例2: is_page_editable

 function is_page_editable($page, $uname, $gname = '')
 {
     global $edit_auth, $edit_auth_pages;
     global $read_auth, $read_auth_pages;
     if (!auth::is_page_auth($page, $read_auth, $read_auth_pages, $uname, $gname)) {
         return false;
     }
     return auth::is_page_auth($page, $edit_auth, $edit_auth_pages, $uname, $gname);
 }
开发者ID:aterai,项目名称:pukiwiki-plus-i18n,代码行数:9,代码来源:auth.cls.php


注:本文中的auth::is_page_auth方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。