user-picture.tpl.php 570 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to present a picture configured for the
  5. * user's account.
  6. *
  7. * Available variables:
  8. * - $user_picture: Image set by the user or the site's default. Will be linked
  9. * depending on the viewer's permission to view the user's profile page.
  10. * - $account: Array of account information. Potentially unsafe. Be sure to
  11. * check_plain() before use.
  12. *
  13. * @see template_preprocess_user_picture()
  14. */
  15. ?>
  16. <?php if ($user_picture): ?>
  17. <div class="user-picture">
  18. <?php print $user_picture; ?>
  19. </div>
  20. <?php endif; ?>