You are here

function ldap_views_handler_filter::option_definition in Lightweight Directory Access Protocol (LDAP) 8.2

Same name and namespace in other branches
  1. 7.2 ldap_views/handlers/ldap_views_handler_filter.inc \ldap_views_handler_filter::option_definition()
  2. 7 ldap_views/handlers/ldap_views_handler_filter.inc \ldap_views_handler_filter::option_definition()
1 call to ldap_views_handler_filter::option_definition()
ldap_views_handler_filter_attribute::option_definition in ldap_views/handlers/ldap_views_handler_filter_attribute.inc
1 method overrides ldap_views_handler_filter::option_definition()
ldap_views_handler_filter_attribute::option_definition in ldap_views/handlers/ldap_views_handler_filter_attribute.inc

File

ldap_views/handlers/ldap_views_handler_filter.inc, line 12
Basic textfield filter to handle string filtering commands including equality, contains, not contains, etc.

Class

ldap_views_handler_filter
@file Basic textfield filter to handle string filtering commands including equality, contains, not contains, etc.

Code

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