You are here

function view::set_use_pager in Views (for Drupal 7) 6.2

Whether or not the pager should be used.

File

includes/view.inc, line 123
view.inc Provides the view object type and associated methods.

Class

view
An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.

Code

function set_use_pager($use_pager) {
  $this->pager['use_pager'] = $use_pager;
}