本文整理汇总了PHP中Permission::allow方法的典型用法代码示例。如果您正苦于以下问题:PHP Permission::allow方法的具体用法?PHP Permission::allow怎么用?PHP Permission::allow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Permission
的用法示例。
在下文中一共展示了Permission::allow方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isAuthorized
public function isAuthorized()
{
$action = $this->request->param('action');
$role = Session::getUserRole();
$resource = "downloads";
//only for admin
Permission::allow('admin', $resource, "*");
//only for normal users
Permission::allow('user', $resource, "download");
return Permission::check($role, $resource, $action);
}
示例2: isAuthorized
public function isAuthorized()
{
$action = $this->request->param('action');
$role = Session::getUserRole();
$resource = "files";
//only for admins
Permission::allow('admin', $resource, ['*']);
//only for normal users
Permission::allow('user', $resource, ['index', 'getAll', 'create']);
Permission::allow('user', $resource, ['delete'], 'owner');
$fileId = Encryption::decryptIdWithDash($this->request->data("file_id"));
$config = ["user_id" => Session::getUserId(), "table" => "files", "id" => $fileId];
return Permission::check($role, $resource, $action, $config);
}
示例3: isAuthorized
public function isAuthorized()
{
$action = $this->request->param('action');
$role = Session::getUserRole();
$resource = "todo";
// only for admins
Permission::allow('admin', $resource, ['*']);
// only for normal users
Permission::allow('user', $resource, ['delete'], 'owner');
$todoId = $this->request->data("todo_id");
if (!empty($todoId)) {
$todoId = Encryption::decryptIdWithDash($todoId);
}
$config = ["user_id" => Session::getUserId(), "table" => "todo", "id" => $todoId];
return Permission::check($role, $resource, $action, $config);
}
示例4: isAuthorized
public function isAuthorized()
{
$action = $this->request->param('action');
$role = Session::getUserRole();
$resource = "posts";
// only for admins
Permission::allow('admin', $resource, ['*']);
// only for normal users
Permission::allow('user', $resource, ['index', 'view', 'newPost', 'create']);
Permission::allow('user', $resource, ['update', 'delete'], 'owner');
$postId = $action === "delete" ? $this->request->param("args")[0] : $this->request->data("post_id");
if (!empty($postId)) {
$postId = Encryption::decryptId($postId);
}
$config = ["user_id" => Session::getUserId(), "table" => "posts", "id" => $postId];
return Permission::check($role, $resource, $action, $config);
}
示例5: isAuthorized
public function isAuthorized()
{
$action = $this->request->param('action');
$role = Session::getUserRole();
$resource = "newsfeed";
// only for admins
Permission::allow('admin', $resource, ['*']);
// only for normal users
Permission::allow('user', $resource, ['index', 'getAll', 'getById', 'create']);
Permission::allow('user', $resource, ['update', 'delete', 'getUpdateForm'], 'owner');
$newsfeedId = $this->request->data("newsfeed_id");
if (!empty($newsfeedId)) {
$newsfeedId = Encryption::decryptIdWithDash($newsfeedId);
}
$config = ["user_id" => Session::getUserId(), "table" => "newsfeed", "id" => $newsfeedId];
return Permission::check($role, $resource, $action, $config);
}
示例6: isAuthorized
public function isAuthorized()
{
$action = $this->request->param('action');
$role = Session::getUserRole();
$resource = "posts";
//only for admins
Permission::allow('admin', $resource, ['*']);
//only for normal users
Permission::allow('user', $resource, ['index', 'view', 'newPost', 'getAll', 'getById', 'create']);
Permission::allow('user', $resource, ['update', 'delete', 'getUpdateForm'], 'owner');
$postId = $this->request->data("post_id");
$config = ["user_id" => Session::getUserId(), "table" => "posts", "id" => $postId];
return Permission::check($role, $resource, $action, $config);
}