You are here

function ldap_servers_php_supports_pagination in Lightweight Directory Access Protocol (LDAP) 7

Same name and namespace in other branches
  1. 8.2 ldap_servers/ldap_servers.module \ldap_servers_php_supports_pagination()
  2. 7.2 ldap_servers/ldap_servers.module \ldap_servers_php_supports_pagination()
4 calls to ldap_servers_php_supports_pagination()
LdapServer::__construct in ldap_servers/LdapServer.class.php
Constructor Method
LdapServerAdmin::drupalForm in ldap_servers/LdapServerAdmin.class.php
LdapServerAdmin::fields in ldap_servers/LdapServerAdmin.class.php
LdapServersTestCase::testUIForms in ldap_servers/tests/ldap_servers.test

File

ldap_servers/ldap_servers.module, line 349

Code

function ldap_servers_php_supports_pagination() {
  return (bool) (function_exists('ldap_control_paged_result_response') && function_exists('ldap_control_paged_result'));
}