function hook_user_view
The user's account information is being displayed.
The module should format its custom additions for display and add them to the $account->content array.
Parameters
$account: The user object on which the operation is being performed.
$view_mode: View mode, e.g. 'full'.
$langcode: The language code used for rendering.
See also
Related topics
4 functions implement hook_user_view()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- blog_user_view in modules/
blog/ blog.module - Implements hook_user_view().
- profile_user_view in modules/
profile/ profile.module - Implements hook_user_view().
- trigger_user_view in modules/
trigger/ trigger.module - Implements hook_user_view().
- user_user_view in modules/
user/ user.module - Implements hook_user_view().
1 invocation of hook_user_view()
- user_build_content in modules/
user/ user.module - Builds a structured array representing the profile content.
File
-
modules/
user/ user.api.php, line 356
Code
function hook_user_view($account, $view_mode, $langcode) {
if (user_access('create blog content', $account)) {
$account->content['summary']['blog'] = array(
'#type' => 'user_profile_item',
'#title' => t('Blog'),
'#markup' => l(t('View recent blog entries'), "blog/{$account->uid}", array(
'attributes' => array(
'title' => t("Read !username's latest blog entries.", array(
'!username' => format_username($account),
)),
),
)),
'#attributes' => array(
'class' => array(
'blog',
),
),
);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.