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\filterCode
protected function opBetween($column) {
$this->query->query
->propertyCondition($column, array(
$this->value['min'],
$this->value['max'],
), "BETWEEN");
}