| 5 user.module | _user_categories($account) |
| 6 user.module | _user_categories( |
| 7 user.module | _user_categories() |
Retrieve a list of all user setting/information categories and sort them by weight.
2 calls to _user_categories()
File
- modules/
user/ user.module, line 1979 - Enables the user registration and login system.
Code
function _user_categories($account) {
$categories = array();
// Only variables can be passed by reference workaround.
$null = NULL;
foreach (module_list() as $module) {
$function = $module . '_user';
// $null and $account need to be passed by reference.
if (function_exists($function) && ($data = $function('categories', $null, $account, ''))) {
$categories = array_merge($data, $categories);
}
}
usort($categories, '_user_sort');
return $categories;
}
Login or register to post comments