You are here

function _date_views_style_plugins in Date 5

Same name and namespace in other branches
  1. 5.2 date/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.module

File

./date_views.inc, line 567

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,
    'even_empty' => true,
    'validate' => 'date_browser_validate',
  );
  return $items;
}