Використовуйте функцію попередньої обробки
Ви хочете, щоб цей клас на фактичному зображенні, додавання через 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 ()
Проблема з цим шляхом через topic_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);
}