You are here

function views_xml_views_xml_formats in Views Datasource 7

Implements hook_views_xml_formats().

File

views/views_xml.views.inc, line 54
Views style plugins to render nodes in the XML data format.

Code

function views_xml_views_xml_formats() {
  $formats = array(
    'raw' => t('Raw XML'),
    'opml' => t('OPML'),
    'atom' => t('Atom'),
  );
  return $formats;
}