1 date_views_filter_handler_simple.inc date_views_filter_handler_simple::widget_options()

Date selection options.

File

core/modules/date/views/date_views_filter_handler_simple.inc, line 224
A standard Views filter for a single date field, using Date API form selectors and sql handling.

Class

date_views_filter_handler_simple
@file A standard Views filter for a single date field, using Date API form selectors and sql handling.

Code

function widget_options() {
  $options = array(
    'date_select' => t('Select'),
    'date_text' => t('Text'),
    'date_popup' => t('Popup'),
  );
  return $options;
}