You are here

function views_xhtml_views_arguments in Views Datasource 5

File

./views_xhtml.module, line 34
Provides Views plugin for rendering node content as XHTML microformats.

Code

function views_xhtml_views_arguments() {
  $arguments = array(
    'xhtml_hcard' => array(
      'name' => t('Views XHTML: hCard data document selector'),
      'handler' => 'views_xhtml_hcard_handler',
      'option' => 'string',
      'help' => t('This argument specifies a document selector; it will only provide a method for rendering the current view as a XHTML hCard document.'),
    ),
    'xhtml_hcalendar' => array(
      'name' => t('Views XHTML: hCalendar data document selector'),
      'handler' => 'views_xhtml_hcalendar_handler',
      'option' => 'string',
      'help' => t('This argument specifies a document selector; it will only provide a method for rendering the current view as a XHTML hCalendar document.'),
    ),
  );
  return $arguments;
}