/[drupal]/drupal/modules/user/user-profile-item.tpl.php
ViewVC logotype

Contents of /drupal/modules/user/user-profile-item.tpl.php

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


Revision 1.3 - (show annotations) (download) (as text)
Mon Oct 13 12:31:43 2008 UTC (13 months, 1 week ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-6, DRUPAL-7-0-UNSTABLE-7, DRUPAL-7-0-UNSTABLE-10, DRUPAL-7-0-UNSTABLE-3, DRUPAL-7-0-UNSTABLE-4, DRUPAL-7-0-UNSTABLE-5, DRUPAL-7-0-UNSTABLE-8, DRUPAL-7-0-UNSTABLE-9, HEAD
Changes since 1.2: +2 -2 lines
File MIME type: text/x-php
- Patch #320000 by lilou: unify doxygen @file documentation in tpl.
1 <?php
2 // $Id: user-profile-item.tpl.php,v 1.2 2007/08/07 08:39:36 goba Exp $
3
4 /**
5 * @file
6 * Default theme implementation to present profile items (values from user
7 * account profile fields or modules).
8 *
9 * This template is used to loop through and render each field configured
10 * for the user's account. It can also be the data from modules. The output is
11 * grouped by categories.
12 *
13 * @see user-profile-category.tpl.php
14 * for the parent markup. Implemented as a definition list by default.
15 * @see user-profile.tpl.php
16 * where all items and categories are collected and printed out.
17 *
18 * Available variables:
19 * - $title: Field title for the profile item.
20 * - $value: User defined value for the profile item or data from a module.
21 * - $attributes: HTML attributes. Usually renders classes.
22 *
23 * @see template_preprocess_user_profile_item()
24 */
25 ?>
26 <dt<?php print $attributes; ?>><?php print $title; ?></dt>
27 <dd<?php print $attributes; ?>><?php print $value; ?></dd>

  ViewVC Help
Powered by ViewVC 1.1.2