You are here

function ldap_views_views_plugins in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_views/ldap_views.views.inc \ldap_views_views_plugins()
  2. 7 ldap_views/ldap_views.views.inc \ldap_views_views_plugins()

Implements hook_views_plugins().

File

ldap_views/ldap_views.views.inc, line 112
Definition of ldap_views module.

Code

function ldap_views_views_plugins() {
  return [
    'query' => [
      'ldap_views' => [
        'title' => t('LDAP'),
        'help' => t('Reads from an ldap server.'),
        'handler' => 'ldap_views_plugin_query_ldap',
      ],
    ],
  ];
}