You are here

function ldap_views_plugin_query_ldap::build in Lightweight Directory Access Protocol (LDAP) 7

Same name and namespace in other branches
  1. 8.2 ldap_views/plugins/ldap_views_plugin_query_ldap.inc \ldap_views_plugin_query_ldap::build()
  2. 7.2 ldap_views/plugins/ldap_views_plugin_query_ldap.inc \ldap_views_plugin_query_ldap::build()

Builds the necessary info to execute the query.

Overrides views_plugin_query::build

File

ldap_views/plugins/ldap_views_plugin_query_ldap.inc, line 22
Defines the default query object which builds and execute a ldap query

Class

ldap_views_plugin_query_ldap
@file Defines the default query object which builds and execute a ldap query

Code

function build(&$view) {
  $view
    ->init_pager($view);

  // Let the pager modify the query to add limits.
  $this->pager
    ->query();
}