You are here

function _date_views_style_plugins in Date 5.2

Same name and namespace in other branches
  1. 5 date_views.inc \_date_views_style_plugins()

Implementation of hook_views_style_plugins()

1 call to _date_views_style_plugins()
date_views_style_plugins in date/date.module

File

date/date_views.inc, line 6

Code

function _date_views_style_plugins() {
  $items = array();
  $items['date_views_browser'] = array(
    'name' => t('Date: Date Browser'),
    'theme' => 'date_views_browser_full_view',
    'summary_theme' => 'date_views_browser_summary_view',
    'needs_fields' => true,
    'needs_table_header' => true,
    'validate' => 'date_browser_validate',
    'even_empty' => true,
  );
  return $items;
}