function image_views_atom_render_field in Views Atom 7
Implements hook_views_atom_render_field().
File
- ./
views_atom.module, line 216
Code
function image_views_atom_render_field(SimpleXMLElement $field_xml, $field, $field_type) {
// Use the same helper function as file module.
if ($field_type == 'image') {
_file_views_atom_render_field($field_xml, $field, $field_type);
}
}