ldap_authorization.install in Lightweight Directory Access Protocol (LDAP) 6
Same filename and directory in other branches
Install, update and uninstall functions for the LDAP authorization module.
File
ldap_authorization/ldap_authorization.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the LDAP authorization module.
*/
/**
* Implementation of hook_install().
*/
function ldap_authorizaton_install() {
drupal_install_schema('ldap_authorization');
}
/**
* Implementation of hook_uninstall().
*/
function ldap_authorization_uninstall() {
drupal_uninstall_schema('ldap_authorization');
}
/**
* Implementation of hook_schema().
*/
function ldap_authorization_schema() {
}
// vim:fenc=utf-8:ft=php:ai:si:ts=2:sw=2:et:
Functions
Name | Description |
---|---|
ldap_authorization_schema | Implementation of hook_schema(). |
ldap_authorization_uninstall | Implementation of hook_uninstall(). |
ldap_authorizaton_install | Implementation of hook_install(). |