You are here

protected function VariableAttributeCustomization::defineOptions in Lightweight Directory Access Protocol (LDAP) 8.3

Same name and namespace in other branches
  1. 8.4 ldap_query/src/Plugin/views/VariableAttributeCustomization.php \Drupal\ldap_query\Plugin\views\VariableAttributeCustomization::defineOptions()

File

ldap_query/src/Plugin/views/VariableAttributeCustomization.php, line 16

Class

VariableAttributeCustomization
Collates the variable attribute customization to apply it to more than one.

Namespace

Drupal\ldap_query\Plugin\views

Code

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