有效的访问参数

发布于 2024-12-11 19:52:10 字数 178 浏览 0 评论 0原文

如何查找有效的访问参数?我查看了 menu_router,但我相信这只给出了其中的一些。

$items['admin/page'] = array(
   'access arguments' => array('access administration pages'),
  );

How can I look up the valid access arguments? I looked in menu_router, but I believe that only gives some of them.

$items['admin/page'] = array(
   'access arguments' => array('access administration pages'),
  );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

终陌 2024-12-18 19:52:10

调用 hook_permission() 跨所有模块:

$permissions = module_invoke_all('permission');

如果我没记错的话,array_keys($permissions) 将为您提供有效权限机器名称的列表。每个权限的标签/描述/其他设置位于每个单独的数组项中。

Invoke hook_permission() across all modules:

$permissions = module_invoke_all('permission');

If I remember rightly array_keys($permissions) will then give you a list of valid permission machine names. The labels/descriptions/other settings for each permissions are in each individual array item.

忆依然 2024-12-18 19:52:10

实际上,您对访问参数的值感兴趣,其中访问回调是“user_access”(默认值);由于模块可以使用不同的访问回调,因此访问参数的值理论上可以是无限的。

调用 hook_permission() 所有实现的另一种方法是使用类似于以下代码的代码:

$permissions = array();
db_query("SELECT permission FROM {role_permission}");

foreach ($result as $row) {
  $permissions[$row->permission] = TRUE;
}

array_keys($permissions) 然后将为您提供所有权限的列表。

我从 user_role_permissions()< 获取查询/a>;不同之处在于该函数感兴趣的是与作为参数传递的角色关联的权限。

Actually, you are interested to the values of the access arguments where the access callback is "user_access" (the default value); as a module can use a different access callback, the values for the access arguments can theoretically be infinite.

The alternative to invoking all the implementations of hook_permission() is to use code similar to the following one:

$permissions = array();
db_query("SELECT permission FROM {role_permission}");

foreach ($result as $row) {
  $permissions[$row->permission] = TRUE;
}

array_keys($permissions) will then give you the list of all the permissions.

I took the query from user_role_permissions(); the difference is that the function is interested in the permissions associated to the role passed as argument.

秋凉 2024-12-18 19:52:10

1- 检查有效权限列表:/admin/people/permissions

Drupal 7, 有效权限列表

2- 在菜单挂钩中指定权限:

function webforms_advanced_router_menu() {

  $items['admin/config/mymodule'] = [
    'title' => 'MyModule',
    'page callback' => 'drupal_get_form',
    'access callback' => '_mymodule_admin_form',
    'access arguments' => array('administer site configuration'),
    'type' => MENU_CALLBACK
  ];

  return $items;
}

1- Check a list of valid permissions at: /admin/people/permissions

Drupal 7, List of valid permissions

2- Specify the permission in your menu hook:

function webforms_advanced_router_menu() {

  $items['admin/config/mymodule'] = [
    'title' => 'MyModule',
    'page callback' => 'drupal_get_form',
    'access callback' => '_mymodule_admin_form',
    'access arguments' => array('administer site configuration'),
    'type' => MENU_CALLBACK
  ];

  return $items;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文