You are here

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

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 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 26
Defines the default query object which builds and execute a ldap query.

Class

ldap_views_plugin_query_ldap

Code

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

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