home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / drupal-6.0.exe / drupal-6.0 / modules / profile / profile-wrapper.tpl.php < prev    next >
Encoding:
PHP Script  |  2007-08-07  |  912 b   |  26 lines

  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>
  26.