function ldap_server_module_load_include in Lightweight Directory Access Protocol (LDAP) 7
@file collection of functions that don't belong in server object
54 calls to ldap_server_module_load_include()
- LdapAuthorizationConsumerAbstract::__construct in ldap_authorization/
LdapAuthorizationConsumerAbstract.class.php - Constructor Method
- LdapQuery::query in ldap_query/
LdapQuery.class.php - LdapServer::deriveEmailFromEntry in ldap_servers/
LdapServer.class.php - LdapTypeNovell.class.php in ldap_servers/
ldap_types/ LdapTypeNovell.class.php - ldap_authentication_admin_form in ldap_authentication/
ldap_authentication.admin.inc - form for adding, updating, and deleting a single ldap authorization mapping
File
- ldap_servers/
ldap_servers.functions.inc, line 9 - collection of functions that don't belong in server object
Code
function ldap_server_module_load_include($type, $module, $name = NULL) {
$result = module_load_include($type, $module, $name);
if ($result === FALSE) {
print "Failed to load file {$name}.{$type} in module {$module}";
drupal_exit();
}
}