Как реализовать поле mail при просмотре аккаунтов

Главные вкладки

Лучший ответ

Аватар пользователя 555666777 555666777 13 мая 2016 в 18:56
1

можно API покурить:
В template.php

<?php
/**
 * Process variables for user-profile.tpl.php.
 *
 * The $variables array contains the following arguments:
 * - $account
 *
 * @see user-profile.tpl.php
 */
function YOUR_THEMENAME_preprocess_user_profile(&$variables) {
  
$account $variables['elements']['#account'];
  
// Helpful $user_profile variable for templates.
  
foreach (element_children($variables['elements']) as $key) {
    
$variables['user_profile'][$key] = $variables['elements'][$key];
  }
  
//Add mail to $user_profile variable
  
$variables['user_profile']['mail'] = $account->mail;
  
// Preprocess fields.
  
field_attach_preprocess('user'$account$variables['elements'], $variables);
}
?>

Далее - выводим $user_profile['mail'] в своем user-profile.tpl.php

Комментарии

Аватар пользователя 555666777 555666777 13 мая 2016 в 18:56
1

можно API покурить:
В template.php

<?php
/**
 * Process variables for user-profile.tpl.php.
 *
 * The $variables array contains the following arguments:
 * - $account
 *
 * @see user-profile.tpl.php
 */
function YOUR_THEMENAME_preprocess_user_profile(&$variables) {
  
$account $variables['elements']['#account'];
  
// Helpful $user_profile variable for templates.
  
foreach (element_children($variables['elements']) as $key) {
    
$variables['user_profile'][$key] = $variables['elements'][$key];
  }
  
//Add mail to $user_profile variable
  
$variables['user_profile']['mail'] = $account->mail;
  
// Preprocess fields.
  
field_attach_preprocess('user'$account$variables['elements'], $variables);
}
?>

Далее - выводим $user_profile['mail'] в своем user-profile.tpl.php