function user_user_categories

Implements hook_user_categories().

File

drupal/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,
    ),
  );
}