You are here

function office_hours_handler_filter_day::get_value_options in Office Hours 6.2

Same name and namespace in other branches
  1. 6 includes/office_hours_handler_filter_day.inc \office_hours_handler_filter_day::get_value_options()
  2. 7 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
Provide the form

File

includes/office_hours_handler_filter_day.inc, line 10

Class

office_hours_handler_filter_day

Code

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