Equality.php

Definition of Drupal\views\Plugin\views\filter\Equality.

Namespace

Drupal\views\Plugin\views\filter

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Equality.php
View source
<?php

/**
 * @file
 * Definition of Drupal\views\Plugin\views\filter\Equality.
 */
namespace Drupal\views\Plugin\views\filter;

use Drupal\Component\Annotation\PluginID;

/**
 * Simple filter to handle equal to / not equal to filters
 *
 * @ingroup views_filter_handlers
 *
 * @PluginID("equality")
 */
class Equality extends FilterPluginBase {

  // exposed filter options
  var $always_multiple = TRUE;

  /**
   * Provide simple equality operator
   */
  public function operatorOptions() {
    return array(
      '=' => t('Is equal to'),
      '!=' => t('Is not equal to'),
    );
  }

  /**
   * Provide a simple textfield for equality
   */
  protected function valueForm(&$form, &$form_state) {
    $form['value'] = array(
      '#type' => 'textfield',
      '#title' => t('Value'),
      '#size' => 30,
      '#default_value' => $this->value,
    );
    if (!empty($form_state['exposed'])) {
      $identifier = $this->options['expose']['identifier'];
      if (!isset($form_state['input'][$identifier])) {
        $form_state['input'][$identifier] = $this->value;
      }
    }
  }

}

Classes

Namesort descending Description
Equality Simple filter to handle equal to / not equal to filters