You are here

function ldap_servers_php_supports_pagination in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_servers/ldap_servers.module \ldap_servers_php_supports_pagination()
  2. 7 ldap_servers/ldap_servers.module \ldap_servers_php_supports_pagination()
3 calls to ldap_servers_php_supports_pagination()
LdapServer::initDerivedProperties in ldap_servers/LdapServer.class.php
This method sets properties that don't directly map from db record.
LdapServerAdmin::drupalForm in ldap_servers/LdapServerAdmin.class.php
LdapServerAdmin::fields in ldap_servers/LdapServerAdmin.class.php

File

ldap_servers/ldap_servers.module, line 878

Code

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