You are here

function efq_views_handler_filter_property_date::op_between in EntityFieldQuery Views Backend 7

Overrides efq_views_handler_filter_date::op_between

File

handlers/efq_views_handler_filter_property_date.inc, line 7

Class

efq_views_handler_filter_property_date
Filter handler for date properties.

Code

function op_between($field) {
  $this->query->query
    ->propertyCondition($field, parent::op_between($field), 'BETWEEN');
}