user_build_content
- Versions
- 6
user_build_content(&$account)- 7
user_build_content($account, $build_mode = 'full')
Builds a structured array representing the profile content.
Parameters
$account A user object.
Return value
A structured array containing the individual elements of the profile.
Code
modules/user/user.module, line 1637
<?php
function user_build_content(&$account) {
$edit = NULL;
user_module_invoke('view', $edit, $account);
// Allow modules to modify the fully-built profile.
drupal_alter('profile', $account);
return $account->content;
}
?>Login or register to post comments 