user_view($account,$view_mode= 'full',$langcode= NULL)
Generate an array for rendering the given user.
When viewing a user profile, the $page array contains:
To theme user profiles, copy core/modules/user/templates/user.html.twig to your theme directory, and edit it as instructed in that file's comments.
\Drupal\user\UserInterface $account: A user object.
string $view_mode: View mode, e.g. 'full'.
string|null $langcode: (optional) A language code to use for rendering. Defaults to the global content language of the current request.
array An array as expected by drupal_render().
function user_view($account, $view_mode = 'full', $langcode = NULL) { return entity_view($account, $view_mode, $langcode); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!user!user.module/function/user_view/8.1.x