You are here

function workbench_access_handler_filter_access::get_value_options in Workbench Access 7

Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.

This can use a guard to be used to reduce database hits as much as possible.

Return value

Return the stored values in $this->value_options if someone expects it.

Overrides views_handler_filter_in_operator::get_value_options

1 call to workbench_access_handler_filter_access::get_value_options()
workbench_access_handler_filter_access::value_form in includes/workbench_access_handler_filter_access.inc
Options form subform for setting options.

File

includes/workbench_access_handler_filter_access.inc, line 29
Views integration for Workbench.

Class

workbench_access_handler_filter_access
@file Views integration for Workbench.

Code

function get_value_options() {
  return workbench_access_active_options();
}