You are here

function ldap_servers_php_supports_pagination in Lightweight Directory Access Protocol (LDAP) 8.2

Same name and namespace in other branches
  1. 7.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. it is split out so it can be shared with ldapServerTest.class.php
LdapServerAdmin::drupalForm in ldap_servers/LdapServerAdmin.class.php
LdapServerAdmin::fields in ldap_servers/LdapServerAdmin.class.php

File

ldap_servers/ldap_servers.module, line 836

Code

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