You are here

function global_filter_options_list in Views Global Filter 8

Same name and namespace in other branches
  1. 7 global_filter.widgets.inc \global_filter_options_list()

List filter options.

File

./global_filter.widgets.inc, line 642
global_filter.widgets.inc

Code

function global_filter_options_list($field, $instance) {
  $options = (array) module_invoke($field['real_module'], 'options_list', $field, $instance);

  // ...
  return $options;
}