/[drupal]/contributions/themes/pixture_reloaded/user-picture.tpl.php
ViewVC logotype

Contents of /contributions/themes/pixture_reloaded/user-picture.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Tue Sep 9 13:14:22 2008 UTC (14 months, 2 weeks ago) by jmburnz
Branch: MAIN
CVS Tags: DRUPAL-6--3-2, DRUPAL-6--3-0, DRUPAL-6--3-1, DRUPAL-6--1-0, HEAD
Changes since 1.2: +7 -5 lines
File MIME type: text/x-php
updates for release verion
1 <?php
2 // $Id: user-picture.tpl.php,v 1.2 2008/08/25 03:27:31 jmburnz Exp $
3 /**
4 * @file
5 * user-picture.tpl.php
6 *
7 * Default theme implementation to present an picture configured for the
8 * user's account.
9 *
10 * Available variables:
11 * - $picture: Image set by the user or the site's default. Will be linked
12 * depending on the viewer's permission to view the users profile page.
13 * - $account: Array of account information. Potentially unsafe. Be sure to
14 * check_plain() before use.
15 *
16 * @see template_preprocess_user_picture()
17 */
18 ?>
19 <?php if (!empty($picture)): ?>
20 <div class="picture">
21 <?php print $picture; ?>
22 </div>
23 <?php endif; ?>

  ViewVC Help
Powered by ViewVC 1.1.2