Skip to content
Snippets Groups Projects
Commit c062ff75 authored by Gerhard Killesreiter's avatar Gerhard Killesreiter
Browse files

#59763, doxygen for user_roles, patch by Zan, backport from HEAD

parent f5830663
No related branches found
Tags 8.x-3.0-alpha5
No related merge requests found
......@@ -1681,11 +1681,16 @@ function user_admin_access() {
}
/**
* Use this API to retreive an array of all available roles
* @param $membersonly Set this to TRUE to omit the special role 'anonymous'.
* @param $permission A string containing a permission. If set, only roles that have that permission are returned.
* @return An associative array, with the role id as key and the role name as value.
**/
* Retrieve an array of roles matching specified conditions.
*
* @param $membersonly
* Set this to TRUE to exclude the 'anonymous' role.
* @param $permission
* A string containing a permission. If set, only roles containing that permission are returned.
*
* @return
* An associative array with the role id as the key and the role name as value.
*/
function user_roles($membersonly = 0, $permission = 0) {
$roles = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment