On this page
public function PagerDefault::getCountQuery
public PagerDefault::getCountQuery()
Retrieve the count query for this pager.
The count query may be specified manually or, by default, taken from the query we are extending.
Return value
SelectQueryInterface A count query object.
File
- includes/pager.inc, line 119
- Functions to aid in presenting database results as a set of pages.
Class
- PagerDefault
- Query extender for pager queries.
Code
public function getCountQuery() {
if ($this->customCountQuery) {
return $this->customCountQuery;
}
else {
return $this->query->countQuery();
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!pager.inc/function/PagerDefault::getCountQuery/7.x