user-profile.tpl.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to present all user profile data.
  5. *
  6. * This template is used when viewing a registered member's profile page,
  7. * e.g., example.com/user/123. 123 being the users ID.
  8. *
  9. * Use render($user_profile) to print all profile items, or print a subset
  10. * such as render($user_profile['user_picture']). Always call
  11. * render($user_profile) at the end in order to print all remaining items. If
  12. * the item is a category, it will contain all its profile items. By default,
  13. * $user_profile['summary'] is provided, which contains data on the user's
  14. * history. Other data can be included by modules. $user_profile['user_picture']
  15. * is available for showing the account picture.
  16. *
  17. * Available variables:
  18. * - $user_profile: An array of profile items. Use render() to print them.
  19. * - Field variables: for each field instance attached to the user a
  20. * corresponding variable is defined; e.g., $account->field_example has a
  21. * variable $field_example defined. When needing to access a field's raw
  22. * values, developers/themers are strongly encouraged to use these
  23. * variables. Otherwise they will have to explicitly specify the desired
  24. * field language, e.g. $account->field_example['en'], thus overriding any
  25. * language negotiation rule that was previously applied.
  26. *
  27. * @see user-profile-category.tpl.php
  28. * Where the html is handled for the group.
  29. * @see user-profile-item.tpl.php
  30. * Where the html is handled for each item in the group.
  31. * @see template_preprocess_user_profile()
  32. *
  33. * @ingroup themeable
  34. */
  35. ?>
  36. <div class="profile"<?php print $attributes; ?>>
  37. <?php print render($user_profile); ?>
  38. </div>