You are here

function _global_filter_get_all_parameter_names in Views Global Filter 7

Same name and namespace in other branches
  1. 8 global_filter.storage.inc \_global_filter_get_all_parameter_names()

Return an array of filter parameter names.

Return value

array array of strings

2 calls to _global_filter_get_all_parameter_names()
global_filter_set_parameter in ./global_filter.storage.inc
Set a name/value pair on the filter by the key $key.
_global_filter_load_legacy_parameters in ./global_filter.storage.inc
Load legacy parameters.

File

./global_filter.storage.inc, line 276
global_filter.storage.inc

Code

function _global_filter_get_all_parameter_names() {
  return array(
    'uses_view',
    'view',
    'field',
    'widget',
    'label',
    'option_all_text',
    'convert_to_range',
    'confirm_question',
    'set_on_select',
    'global_php_default',
    'global_field_or_view_default',
  );
}