~spreadubuntu/spreadubuntu/devel-drupal6

« back to all changes in this revision

Viewing changes to modules/user/user-picture.tpl.php

  • Committer: ruben
  • Date: 2009-06-08 09:38:49 UTC
  • Revision ID: ruben@captive-20090608093849-s1qtsyctv2vwp1x1
SpreadUbuntu moving to Drupal6. Based on ubuntu-drupal theme and adding our modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
// $Id: user-picture.tpl.php,v 1.2 2007/08/07 08:39:36 goba Exp $
 
3
 
 
4
/**
 
5
 * @file user-picture.tpl.php
 
6
 * Default theme implementation to present an picture configured for the
 
7
 * user's account.
 
8
 *
 
9
 * Available variables:
 
10
 * - $picture: Image set by the user or the site's default. Will be linked
 
11
 *   depending on the viewer's permission to view the users profile page.
 
12
 * - $account: Array of account information. Potentially unsafe. Be sure to
 
13
 *   check_plain() before use.
 
14
 *
 
15
 * @see template_preprocess_user_picture()
 
16
 */
 
17
?>
 
18
<div class="picture">
 
19
  <?php print $picture; ?>
 
20
</div>