Projet

Général

Profil

Paste
Télécharger (366 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / ldap / ldap_authorization / ldap_authorization_drupal_role / ldap_authorization_drupal_role.install @ 7547bb19

1
<?php
2

    
3
/**
4
 * @file
5
 * Install, update and uninstall functions for the LDAP authorization module.
6
 */
7

    
8

    
9
/**
10
 * Implements hook_uninstall().
11
 */
12
function ldap_authorization_drupal_role_uninstall() {
13
  module_load_include('inc', 'ldap_servers', 'ldap_servers.user_data_remove');
14
  batch_set(ldap_severs_user_data_setup_batch('drupal_role'));
15
  $batch =& batch_get();
16
}