Drupal kullanıcı profillerindeki e-posta alanına kadar i (iyi ve obvoius nedenlerle) gösterilmesini ment değil anlamak gibidir.
Ama hala Drupal 5.x profili (nodeprofile) kullanıcı e-posta göstermek için bilmek gerekir?
Bu gibi (mevcut tema klasöründe bulunan sizin template.php için işlev eklemek) theme_user_profile kanca değiştirin:
function <your_theme_name>_user_profile($account, $fields) {
// adding the email field to profile
$email = array();
$email["value"] = check_plain($account->mail);
$fields["email"][0] = $email;
// end of adding the email field
// the rest of the default profile hook taken from http://api.drupal.org/api/function/theme_user_profile/5
$output = '<div class="profile">';
$output .= theme('user_picture', $account);
foreach ($fields as $category => $items) {
if (strlen($category) > 0) {
$output .= '<h2 class="title">'. check_plain($category) .'</h2>';
}
$output .= '<dl>';
foreach ($items as $item) {
if (isset($item['title'])) {
$output .= '<dt class="'. $item['class'] .'">'. $item['title'] .'</dt>';
}
$output .= '<dd class="'. $item['class'] .'">'. $item['value'] .'</dd>';
}
$output .= '</dl>';
}
$output .= '</div>';
return $output;
}
Update. Üzgünüm, nodeprofile modülünü kullanarak olduğunuzu fark etmedi. Ben hiç kullanmadım, ama oldukça emin e-posta benzer şekilde gösterilebilir am
Dolardan kullanıcı altına bakın.
global $user;
// You can use dsm with the devel module instead of print_r
print_r($user);
Bu modül ile çalışabilir ayrıca http://drupal.org/project/logintoboggan?