You are here

function office_hours_handler_filter_day::operator_options 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::operator_options()
  2. 6 includes/office_hours_handler_filter_day.inc \office_hours_handler_filter_day::operator_options()

Provides inclusive/exclusive matching.

File

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

Class

office_hours_handler_filter_day
@file Implements Views integration: day filter.

Code

function operator_options() {
  return array(
    'in' => t('Is open on one of the following days'),
    'not in' => t('Is closed on one of the following days'),
  );
}