| Versions | |
|---|---|
| 4.7 – 5 | theme_profile_block( |
| 6 | theme_profile_block() |
| 7 | theme_profile_block($variables) |
modules/
<?php
function theme_profile_block($account, $fields = array()) {
$output .= theme('user_picture', $account);
foreach ($fields as $field) {
if ($field->value) {
if ($field->type == 'checkbox') {
$output .= "<p>$field->value</p>\n";
}
else {
$output .= '<p><strong>' . check_plain($field->title) . "</strong><br />$field->value</p>\n";
}
}
}
return $output;
}
?>