function user_user_categories in Drupal 7
Implements hook_user_categories().
File
- modules/
user/ user.module, line 1331 - Enables the user registration and login system.
Code
function user_user_categories() {
return array(
array(
'name' => 'account',
'title' => t('Account settings'),
'weight' => 1,
),
);
}