You are here

public function DisplayPluginBase::usesPager in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/display/DisplayPluginBase.php \Drupal\views\Plugin\views\display\DisplayPluginBase::usesPager()

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

Return value

bool

Overrides DisplayPluginInterface::usesPager

6 calls to DisplayPluginBase::usesPager()
Attachment::renderPager in core/modules/views/src/Plugin/views/display/Attachment.php
Checks to see if the display plugins support pager rendering.
DisplayPluginBase::buildOptionsForm in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Provide a form to edit options for this plugin.
DisplayPluginBase::defaultableSections in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Lists the 'defaultable' sections and what items each section contains.
DisplayPluginBase::defineOptions in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Information about options for all kinds of purposes will be held here.
DisplayPluginBase::isPagerEnabled in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Whether the display is using a pager or not.

... See full list

File

core/modules/views/src/Plugin/views/display/DisplayPluginBase.php, line 301

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

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