public function LdapAuthenticationConf::hasEnabledAuthenticationServers in Lightweight Directory Access Protocol (LDAP) 7
Same name and namespace in other branches
- 8.2 ldap_authentication/LdapAuthenticationConf.class.php \LdapAuthenticationConf::hasEnabledAuthenticationServers()
- 7.2 ldap_authentication/LdapAuthenticationConf.class.php \LdapAuthenticationConf::hasEnabledAuthenticationServers()
are any ldap servers that are enabled associated with ldap authentication *
1 call to LdapAuthenticationConf::hasEnabledAuthenticationServers()
- LdapAuthenticationConf::enabled_servers in ldap_authentication/
LdapAuthenticationConf.class.php
File
- ldap_authentication/
LdapAuthenticationConf.class.php, line 71 - This class represents an ldap_authentication module's configuration It is extended by LdapAuthenticationConfAdmin for configuration and other admin functions
Class
- LdapAuthenticationConf
- @file This class represents an ldap_authentication module's configuration It is extended by LdapAuthenticationConfAdmin for configuration and other admin functions
Code
public function hasEnabledAuthenticationServers() {
return !(count($this->enabledAuthenticationServers) == 0);
}