Use a função de pré-processo
Você deseja que essa classe na imagem real, a adição de JS / jQuery seja confusa e quebre se o conteúdo estiver carregado com 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';
}
}
}
Por que não uso theme_image_style () para isso
O problema de fazer isso por theme_image_style () é que ele substitui a função de saída para apenas um campo, e se você tiver vários campos em lugares diferentes ... muitos THEME_field__field_photo__team($variables)
alcançando o mesmo que o descrito acima usando theme_image_style () ficaria assim:
// 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);
}