public function PagerDefault::getCountQuery

7.x pager.inc 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.

1 call to PagerDefault::getCountQuery()
PagerDefault::execute in drupal-7.x/includes/pager.inc
Override the execute method.

File

drupal-7.x/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();
  }
}