1 view.inc view::use_pager()

Determine if the pager actually uses a pager.

File

core/modules/views/includes/view.inc, line 423
Provides the view object type and associated methods.

Class

view

Code

function use_pager() {
  if (!empty($this->query->pager)) {
    return $this->query->pager->use_pager();
  }
}