You are here

function views_xhtml_views_xhtml_formats in Views Datasource 7

Implements hook_views_xhtml_formats().

File

views/views_xhtml.views.inc, line 54
Views style plugin to render nodes as XHTML microformats.

Code

function views_xhtml_views_xhtml_formats() {
  $formats = array(
    'hcard' => t('hCard'),
    'hcalendar' => t('hCalendar'),
  );
  return $formats;
}