Mercurial > defr > drupal > core
comparison modules/profile/profile-wrapper.tpl.php @ 1:c1f4ac30525a 6.0
Drupal 6.0
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 23 Dec 2008 14:28:28 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:5a113a1c4740 | 1:c1f4ac30525a |
---|---|
1 <?php | |
2 // $Id: profile-wrapper.tpl.php,v 1.2 2007/08/07 08:39:35 goba Exp $ | |
3 | |
4 /** | |
5 * @file profile-wrapper.tpl.php | |
6 * Default theme implementation for wrapping member listings and their | |
7 * profiles. | |
8 * | |
9 * This template is used when viewing a list of users. It can be a general | |
10 * list for viewing all users with the url of "example.com/profile" or when | |
11 * viewing a set of users who share a specific value for a profile such | |
12 * as "example.com/profile/country/belgium". | |
13 * | |
14 * Available variables: | |
15 * - $content: User account profiles iterated through profile-listing.tpl.php. | |
16 * - $current_field: The named field being browsed. Provided here for context. | |
17 * The above example would result in "last_name". An alternate template name | |
18 * is also based on this, e.g., "profile-wrapper-last_name.tpl.php". | |
19 * | |
20 * @see template_preprocess_profile_wrapper() | |
21 */ | |
22 ?> | |
23 <div id="profile"> | |
24 <?php print $content; ?> | |
25 </div> |