Skip to content

Instantly share code, notes, and snippets.

@jeremycaldwell
Created August 30, 2013 22:53
Show Gist options
  • Save jeremycaldwell/6395064 to your computer and use it in GitHub Desktop.
Save jeremycaldwell/6395064 to your computer and use it in GitHub Desktop.
Drupal 7 - User picture
<?php if ($picture): ?>
<?php
$user = user_load($user->uid);
print theme_image_style (
array (
'style_name' => 'user-photo',
'path' => $user->picture->uri,
'attributes' => array ('class' => 'user-photo'),
'width' => NULL,
'height' => NULL,
)
);
?>
<?php else: ?>
<div class="userimage-placeholder"></div>
<?php endif; ?>
OR
<?php print theme('user_picture', array('account' => $user)); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment