You are here

function views_filters_populate_handler_filter::option_definition in Views filters populate 6

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

File

views/views_filters_populate_handler_filter.inc, line 26
Filter classes.

Class

views_filters_populate_handler_filter
Generic views handler filter to add code to manipulate the query object.

Code

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