function views_xml_views_arguments in Views Datasource 5
File
- ./
views_xml.module, line 40 - views_xml.module - provides Views plugin for rendering node content as XML.
Code
function views_xml_views_arguments() {
$arguments = array(
'xml_raw' => array(
'name' => t('Views XML: raw XML data document selector'),
'handler' => 'views_xml_views_handler',
'option' => 'string',
'help' => t('This argument specifies a Raw XML data document selector; it will only provide a method for rendering the current view as raw XML.'),
),
'xml_opml' => array(
'name' => t('Views XML: OPML XML data document selector'),
'handler' => 'views_xml_views_handler',
'option' => 'string',
'help' => t('This argument specifies a OPML XML data document selector; it will only provide a method for rendering the current view as OPML.'),
),
'xml_atom' => array(
'name' => t('Views XML: Atom XML data document selector'),
'handler' => 'views_xml_views_handler',
'option' => 'string',
'help' => t('This argument specifies an Atom XML data document selector; it will only provide a method for rendering the current view in the Atom XML format.'),
),
);
return $arguments;
}