Parent Directory
|
Revision Log
|
Revision Graph
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 |