You are here

function pay_handler_filter_amount::option_definition in Pay 6

Same name and namespace in other branches
  1. 7 includes/views/pay_handler_filter_amount.inc \pay_handler_filter_amount::option_definition()

File

includes/views/pay_handler_filter_amount.inc, line 8

Class

pay_handler_filter_amount
Simple filter to handle greater than/less than filters

Code

function option_definition() {
  $options = parent::option_definition();
  $options['value'] = array(
    'contains' => array(
      'min' => array(
        'default' => '',
      ),
      'max' => array(
        'default' => '',
      ),
      'value' => array(
        'default' => '',
      ),
    ),
  );
  return $options;
}