public function DisplayPluginBase::usesPager

Whether the display allows the use of a pager or not.

Return value

bool

6 calls to DisplayPluginBase::usesPager()
Attachment::renderPager in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/Attachment.php
Not all display plugins will suppert pager rendering.
DisplayPluginBase::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Provide the default form for setting options.
DisplayPluginBase::defaultableSections in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Static member function to list which sections are defaultable and what items each section contains.
DisplayPluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
DisplayPluginBase::isPagerEnabled in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Whether the display is using a pager or not.

... See full list

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php, line 273
Contains Drupal\views\Plugin\views\display\DisplayPluginBase.

Class

DisplayPluginBase
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Namespace

Drupal\views\Plugin\views\display

Code

public function usesPager() {
  return $this->usesPager;
}