You are here

function file_views_atom_render_field in Views Atom 7

Implements hook_views_atom_render_field().

File

./views_atom.module, line 204

Code

function file_views_atom_render_field(SimpleXMLElement $field_xml, $field, $field_type) {

  // For filefields, also encode the complete URL to the file so that it can be
  // pulled by the remote system.
  if ($field_type == 'file') {
    _file_views_atom_render_field($field_xml, $field, $field_type);
  }
}