You are here

function date_api_filter_handler::op_between in Date 6

File

./date_api.views.inc, line 770
Defines date-related Views data and plugins:

Class

date_api_filter_handler
A flexible, configurable date filter.

Code

function op_between($field) {
  $value = $this
    ->date_filter('min', $field, '>=');
  $value = $this
    ->date_filter('max', $field, '<=');
  return;
}