You are here

function office_hours_handler_filter_hours::value_form in Office Hours 6

Same name and namespace in other branches
  1. 6.2 includes/office_hours_handler_filter_hours.inc \office_hours_handler_filter_hours::value_form()
  2. 7 includes/office_hours_handler_filter_hours.inc \office_hours_handler_filter_hours::value_form()

Provide the form

File

includes/office_hours_handler_filter_hours.inc, line 104

Class

office_hours_handler_filter_hours

Code

function value_form(&$form, &$form_state) {
  $form['value']['#tree'] = TRUE;
  $opt = _create_hours_arr($field, FALSE);

  // We have to make some choices when creating this as an exposed
  // filter form. For example, if the operator is locked and thus
  // not rendered, we can't render dependencies; instead we only
  // render the form items we need.
  $which = 'all';
  if (!empty($form['operator'])) {
    $source = $form['operator']['#type'] == 'radios' ? 'radio:options[operator]' : 'edit-options-operator';
  }
  if (!empty($form_state['exposed'])) {
    $identifier = $this->options['expose']['identifier'];
    if (empty($this->options['expose']['use_operator']) || empty($this->options['expose']['operator'])) {

      // exposed and locked.
      $which = in_array($this->operator, $this
        ->operator_values(2)) ? 'minmax' : 'value';
    }
    else {
      $source = 'edit-' . form_clean_id($this->options['expose']['operator']);
    }
  }
  if ($which == 'all') {
    $form['value']['value'] = array(
      '#type' => 'select',
      '#title' => empty($form_state['exposed']) ? t('Choose hour') : '',
      //'#prefix' => t('<div class="form-item"><label>Filter by hours</label><p>Choose the hour to filter by working hours (\'between\') or closed hours(\'not between\')</p></div>'),
      '#default_value' => $this->value['value'],
      '#options' => $opt,
      '#process' => array(
        'views_process_dependency',
      ),
      '#dependency' => array(
        $source => $this
          ->operator_values(1),
      ),
    );
    if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier]['value'])) {
      $form_state['input'][$identifier]['value'] = $this->value['value'];
    }
  }
  elseif ($which == 'value') {

    // When exposed we drop the value-value and just do value if
    // the operator is locked.
    $form['value'] = array(
      '#type' => 'select',
      '#title' => empty($form_state['exposed']) ? t('Choose hour') : '',
      '#default_value' => $this->value['value'],
      '#options' => $opt,
    );
    if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier])) {
      $form_state['input'][$identifier] = $this->value['value'];
    }
  }
  if ($which == 'all' || $which == 'minmax') {
    $form['value']['min'] = array(
      '#type' => 'select',
      '#title' => empty($form_state['exposed']) ? t('Choose hour') : '',
      '#default_value' => $this->value['min'],
      '#options' => $opt,
    );
    $form['value']['max'] = array(
      '#type' => 'select',
      '#title' => empty($form_state['exposed']) ? t('Choose hour') : '',
      '#default_value' => $this->value['max'],
      '#options' => $opt,
    );
    if ($which == 'all') {
      $dependency = array(
        '#process' => array(
          'views_process_dependency',
        ),
        '#dependency' => array(
          $source => $this
            ->operator_values(2),
        ),
      );
      $form['value']['min'] += $dependency;
      $form['value']['max'] += $dependency;
    }
    if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier]['min'])) {
      $form_state['input'][$identifier]['min'] = $this->value['min'];
    }
    if (!empty($form_state['exposed']) && !isset($form_state['input'][$identifier]['max'])) {
      $form_state['input'][$identifier]['max'] = $this->value['max'];
    }
  }
}