You are here

protected function PropertyNumeric::opBetween in EntityFieldQuery Views Backend 8

File

src/Plugin/views/filter/PropertyNumeric.php, line 29
Contains \Drupal\efq_views\Plugin\views\filter\PropertyNumeric.

Class

PropertyNumeric
Filter handler for numeric properties.

Namespace

Drupal\efq_views\Plugin\views\filter

Code

protected function opBetween($column) {
  $this->query->query
    ->propertyCondition($column, array(
    $this->value['min'],
    $this->value['max'],
  ), "BETWEEN");
}