You are here

function GroupByNumeric::op_between in Views (for Drupal 7) 8.3

Overrides Numeric::op_between

File

lib/Drupal/views/Plugin/views/filter/GroupByNumeric.php, line 32
Definition of Drupal\views\Plugin\views\filter\GroupByNumeric.

Class

GroupByNumeric
Simple filter to handle greater than/less than filters

Namespace

Drupal\views\Plugin\views\filter

Code

function op_between($field) {
  $placeholder_min = $this
    ->placeholder();
  $placeholder_max = $this
    ->placeholder();
  if ($this->operator == 'between') {
    $this->query
      ->add_having_expression($this->options['group'], "{$field} >= {$placeholder_min}", array(
      $placeholder_min => $this->value['min'],
    ));
    $this->query
      ->add_having_expression($this->options['group'], "{$field} <= {$placeholder_max}", array(
      $placeholder_max => $this->value['max'],
    ));
  }
  else {
    $this->query
      ->add_having_expression($this->options['group'], "{$field} <= {$placeholder_min} OR {$field} >= {$placeholder_max}", array(
      $placeholder_min => $this->value['min'],
      $placeholder_max => $this->value['max'],
    ));
  }
}