function views_handler_filter_numeric::value_form

3.x views_handler_filter_numeric.inc views_handler_filter_numeric::value_form(&$form, &$form_state)
2.x views_handler_filter_numeric.inc views_handler_filter_numeric::value_form(&$form, &$form_state)

Provide a simple textfield for equality

Overrides views_handler_filter::value_form

1 call to views_handler_filter_numeric::value_form()
views_handler_filter_date::value_form in handlers/views_handler_filter_date.inc
Add a type selector to the value form
1 method overrides views_handler_filter_numeric::value_form()
views_handler_filter_date::value_form in handlers/views_handler_filter_date.inc
Add a type selector to the value form

File

handlers/views_handler_filter_numeric.inc, line 139
Definition of views_handler_filter_numeric.

Class

views_handler_filter_numeric
Simple filter to handle greater than/less than filters

Code

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

  // 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_id'])) {
      // exposed and locked.
      $which = in_array($this->operator, $this->operator_values(2)) ? 'minmax' : 'value';
    }
    else {
      $source = 'edit-' . drupal_html_id($this->options['expose']['operator_id']);
    }
  }

  if ($which == 'all') {
    $form['value']['value'] = array(
      '#type' => 'textfield',
      '#title' => empty($form_state['exposed']) ? t('Value') : '',
      '#size' => 30,
      '#default_value' => $this->value['value'],
      '#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' => 'textfield',
      '#title' => empty($form_state['exposed']) ? t('Value') : '',
      '#size' => 30,
      '#default_value' => $this->value['value'],
    );
    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' => 'textfield',
      '#title' => empty($form_state['exposed']) ? t('Min') : '',
      '#size' => 30,
      '#default_value' => $this->value['min'],
    );
    $form['value']['max'] = array(
      '#type' => 'textfield',
      '#title' => empty($form_state['exposed']) ? t('And max') : t('And'),
      '#size' => 30,
      '#default_value' => $this->value['max'],
    );
    if ($which == 'all') {
      $dependency = array(
        '#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'];
    }

    if (!isset($form['value'])) {
      // Ensure there is something in the 'value'.
      $form['value'] = array(
        '#type' => 'value',
        '#value' => NULL
      );
    }
  }
}