Используйте функцию предварительной обработки
Вы хотите, чтобы этот класс на реальном изображении, добавление через JS / jQuery является грязным и ломается, если контент загружен ajax.
function THEMENAME_preprocess_field(&$variables) {
if($variables['element']['#field_name'] == 'field_photo'){
foreach($variables['items'] as $key => $item){
$variables['items'][ $key ]['#item']['attributes']['class'][] = 'img-circle';
}
}
}
Почему я не использую theme_image_style () для этого
Проблема, связанная с выполнением этого с помощью theme_image_style (), заключается в том, что он переопределяет функцию вывода только для одного поля, а что, если у вас есть несколько полей в разных местах ... слишком много для THEME_field__field_photo__team($variables)
достижения того же, что и выше с использованием theme_image_style (), будет выглядеть так:
// Override the field 'field_photo' on the content type 'team'
function THEMENAME_field__field_photo__team($variables) {
// Determine the dimensions of the styled image.
$dimensions = array(
'width' => $variables['width'],
'height' => $variables['height'],
);
image_style_transform_dimensions($variables['style_name'], $dimensions);
$variables['width'] = $dimensions['width'];
$variables['height'] = $dimensions['height'];
$variables['attributes'] = array(
'class' => $variables['img-circle'],
);
// Determine the URL for the styled image.
$variables['path'] = image_style_url($variables['style_name'], $variables['path']);
return theme('image', $variables);
}