Is it possible to use the Drupal api to get a list of users?(是否可以使用 Drupal api 来获取用户列表?)
问题描述
我想获取已分配特定角色的所有用户的列表.我可以编写自己的 SQL,但我想尽可能多地使用 api.
I would like to get a list of all the users who have been assigned a certain role. I could write my own SQL but I would like to use the api as much as possible.
推荐答案
对于此类任务(提取符合特定条件的实体),通常没有 Drupal API 函数.它倾向于关注 API 中的单实体 CRUD 功能;其他一切都取决于开发人员自己的 SQL 技能.
There are generally no Drupal API functions for this sort of task (pulling up entities that match certain criteria). It tends to focus on single-entity CRUD functions in the API; everything else is up to a developer's own SQL skills.
Views 模块允许您构建按角色、权限等过滤的用户列表 - 但它很容易被过度使用.
The Views module allows you to build lists of users filtered by role, permission, etc -- but it could easily be overkill.
这篇关于是否可以使用 Drupal api 来获取用户列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以使用 Drupal api 来获取用户列表?
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01