hook_user_categories()Retrieve a list of all user setting/information categories.
A linear array of associative arrays. These arrays have keys:
modules/user/user.api.php, line 187
<?php
function hook_user_categories() {
return array(array(
'name' => 'account',
'title' => t('Account settings'),
'weight' => 1,
));
}
?>