function tripal_views_handler_filter_select_string::extra_options_options

2.x tripal_views_handler_filter_select_string.inc tripal_views_handler_filter_select_string::extra_options_options()
3.x tripal_views_handler_filter_select_string.inc tripal_views_handler_filter_select_string::extra_options_options()

File

tripal_views/views/handlers/tripal_views_handler_filter_select_string.inc, line 254
Contains tripal_views_handler_filter_select_string Filter Handler

Class

tripal_views_handler_filter_select_string
This Handler provides a generic select list for any chado field that is a string The select list includes all distinct values for that field.

Code

function extra_options_options() {
  $this->options['values_form_type'] = 'textfield';
  $this->options['select_multiple'] = FALSE;
  $this->options['select_optional'] = FALSE;
  $this->options['max_length'] = 40;
  $this->options['show_all'] = FALSE;
}