~openquery-core/drupal/6.x-mysql-replication

« back to all changes in this revision

Viewing changes to modules/profile/profile-wrapper.tpl.php

  • Committer: Peter Lieverdink
  • Date: 2009-04-29 06:11:12 UTC
  • Revision ID: me@cafuego.net-20090429061112-o782nzx1kybbjzj7
Vanilla 6.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>