You are here

function ldap_views_handler_filter_attribute::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_attribute.inc \ldap_views_handler_filter_attribute::option_definition()
  2. 7 ldap_views/handlers/ldap_views_handler_filter_attribute.inc \ldap_views_handler_filter_attribute::option_definition()

Overrides ldap_views_handler_filter::option_definition

File

ldap_views/handlers/ldap_views_handler_filter_attribute.inc, line 17
Basic textfield filter to handle string filtering commands for a generic ldap attribute Includes new criterias

Class

ldap_views_handler_filter_attribute
@file Basic textfield filter to handle string filtering commands for a generic ldap attribute Includes new criterias

Code

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