BooleanOperatorString.php

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

Namespace

Drupal\views\Plugin\views\filter

File

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

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

use Drupal\Component\Annotation\PluginID;

/**
 * Simple filter to handle matching of boolean values.
 *
 * This handler checks to see if a string field is empty (equal to '') or not.
 * It is otherwise identical to the parent operator.
 *
 * Definition items:
 * - label: (REQUIRED) The label for the checkbox.
 *
 * @ingroup views_filter_handlers
 *
 * @PluginID("boolean_string")
 */
class BooleanOperatorString extends BooleanOperator {
  public function query() {
    $this
      ->ensureMyTable();
    $where = "{$this->tableAlias}.{$this->realField} ";
    if (empty($this->value)) {
      $where .= "= ''";
      if ($this->accept_null) {
        $where = '(' . $where . " OR {$this->tableAlias}.{$this->realField} IS NULL)";
      }
    }
    else {
      $where .= "<> ''";
    }
    $this->query
      ->addWhere($this->options['group'], $where);
  }

}

Classes

Namesort descending Description
BooleanOperatorString Simple filter to handle matching of boolean values.