profile-block.tpl.php
Default theme implementation for displaying a users profile within a block. It only shows in relation to a node displayed as a full page.
Available variables:
- $user_picture: Image configured for the account linking to the users page.
- $profile: Keyed array of all profile fields that have a value.
Each $field in $profile contains:
- $field->title: Title of the profile field.
- $field->value: Value of the profile field.
- $field->type: Type of the profile field, i.e., checkbox, textfield, textarea, selection, list, url or date.
Since $profile is keyed, a direct print of the field is possible. Not all accounts may have a value for a profile so do a check first. If a field of "last_name" was set for the site, the following can be used.
<?php if (isset($profile['last_name'])): ?> <div class="field last-name"> <?php print $profile['last_name']->title; ?>:<br /> <?php print $profile['last_name']->value; ?> </div> <?php endif; ?>
See also
template_preprocess_profile_block()
1 theme call to profile-block.tpl.php
- profile_block_view in modules/
profile/ profile.module - Implements hook_block_view().
File
-
modules/
profile/ profile-block.tpl.php
View source
<?php
/**
* @file
* Default theme implementation for displaying a users profile within a
* block. It only shows in relation to a node displayed as a full page.
*
* Available variables:
* - $user_picture: Image configured for the account linking to the users page.
* - $profile: Keyed array of all profile fields that have a value.
*
* Each $field in $profile contains:
* - $field->title: Title of the profile field.
* - $field->value: Value of the profile field.
* - $field->type: Type of the profile field, i.e., checkbox, textfield,
* textarea, selection, list, url or date.
*
* Since $profile is keyed, a direct print of the field is possible. Not
* all accounts may have a value for a profile so do a check first. If a field
* of "last_name" was set for the site, the following can be used.
*
* <?php if (isset($profile['last_name'])): ?>
* <div class="field last-name">
* <?php print $profile['last_name']->title; ?>:<br />
* <?php print $profile['last_name']->value; ?>
* </div>
* <?php endif; ?>
*
* @see template_preprocess_profile_block()
*/
print $user_picture;
?>
<?php
foreach ($profile as $field) {
?>
<p>
<?php
if ($field->type != 'checkbox') {
?>
<strong><?php
print $field->title;
?></strong><br />
<?php
}
?>
<?php
print $field->value;
?>
</p>
<?php
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.