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


PHP Permission::IsAllowed方法代码示例

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


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

示例1: Permission

<?php

$perms = new Permission();
if (!$perms->IsAllowed('groups')) {
    Exceptions::PrintOut("You do not have access to the Users and groups");
}
/**
 * Check if post names are set
 */
$post_check = Post::Check(array("title", "users", "banned", "history"));
/**
 * If post names are all set, try to insert the group
 */
if ($post_check) {
    $new_user = new UsersAndGroups();
    $result = $new_user->NewGroup($_POST['title'], array($_POST['users'], $_POST['banned'], $_POST['history']));
    /*
     * If result is not true, output the error variable
     */
    if (!$result) {
        $error = $new_user->error;
    }
}
/**
 * Include view template file
 */
include 'views/template/new_group.html';
开发者ID:rogerp91,项目名称:OC,代码行数:27,代码来源:new_group.php

示例2: Permission

<?php

$perms = new Permission();
if (!$perms->IsAllowed('history')) {
    Exceptions::PrintOut("You do not have access to the History");
}
/**
 * Check $_POST variables for "search"
 */
$post_check = Post::Check(array("search"));
if ($post_check) {
    /**
     * If variable is passed, search for the historic messages with passed variable
     */
    $historic = History::SearchHistory($_POST['search']);
} else {
    /**
     * Else output the default historic messages
     */
    $historic = History::ListHistory();
}
include 'views/template/history.html';
开发者ID:rogerp91,项目名称:OC,代码行数:22,代码来源:history.php

示例3: Permission

<?php

$perms = new Permission();
if (!$perms->IsAllowed('banned')) {
    Exceptions::PrintOut("You do not have access to the Banned area");
}
/**
 * Check for $_GET variable "id"
 */
$delcheck = Post::GCheck(array("id"));
/**
 * If variable is set, delete the user and return to page
 */
if ($delcheck) {
    UserBan::BanDelete($_GET['id']);
    header("Location: index.php?page=UserBan");
}
开发者ID:rogerp91,项目名称:OC,代码行数:17,代码来源:bandelete.php


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