You are here

function ldap_views_views_plugins in Lightweight Directory Access Protocol (LDAP) 7

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

Implements hook_views_plugins().

File

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

Code

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