You are here

function ldapauth_ctools_plugin_api in LDAP integration 6

Implementation of hook_ctools_plugin_api().

Tell CTools that we support the default_ldapauth_ldapservers API.

File

./ldapauth.module, line 735
ldapauth provides authentication against ldap server.

Code

function ldapauth_ctools_plugin_api($owner, $api) {
  if ($owner == 'ldapauth' && $api == 'default_ldapauth_ldapservers') {
    return array(
      'version' => 1,
    );
  }
}