You are here

function office_hours_handler_filter_day::option_definition in Office Hours 7

Same name and namespace in other branches
  1. 6.2 includes/office_hours_handler_filter_day.inc \office_hours_handler_filter_day::option_definition()
  2. 6 includes/office_hours_handler_filter_day.inc \office_hours_handler_filter_day::option_definition()

File

includes/office_hours_handler_filter_day.inc, line 26
Implements Views integration: day filter.

Class

office_hours_handler_filter_day
@file Implements Views integration: day filter.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['operator']['default'] = 'or';
  $options['value']['default'] = array();
  return $options;
}