Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just need the link of the profile picture of the current logged-in user in Drupal 7. I tried this:

global $user;
print $user->picture;

output: 2

And this:

global $user;
print  theme('user_picture', array('account' => $user));

Output: the image as a < img >-element

share|improve this question

1 Answer

up vote 1 down vote accepted

The picture is stored as a reference to a file in the files table, you can load the file and extract the path like this:

global $user;
$fid = $user->picture;

$file = file_load($fid);
$uri = $file->uri; // URI path, e.g. public://image.jpg
$path = file_create_url($uri); // Web accessible path, e.g. /sites/default/files/image.jpg
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.