You are here

function office_hours_handler_filter_day::get_value_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::get_value_options()
  2. 6 includes/office_hours_handler_filter_day.inc \office_hours_handler_filter_day::get_value_options()
1 call to office_hours_handler_filter_day::get_value_options()
office_hours_handler_filter_day::value_form in includes/office_hours_handler_filter_day.inc
Provides the form.

File

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

Class

office_hours_handler_filter_day
@file Implements Views integration: day filter.

Code

function get_value_options() {
  $this->value_options = array(
    t('Sunday'),
    t('Monday'),
    t('Tuesday'),
    t('Wednesday'),
    t('Thursday'),
    t('Friday'),
    t('Saturday'),
  );
}