function user_user_categories
Implements hook_user_categories().
Archivo
- drupal-7.x/
modules/ user/ user.module, line 1300 - Enables the user registration and login system.
Código
function user_user_categories() {
return array(array(
'name' => 'account',
'title' => t('Account settings'),
'weight' => 1,
));
}