You are here

public function DisplayPluginBase::usesMore 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::usesMore()

Whether the display allows the use of a 'more' link or not.

Return value

bool

Overrides DisplayPluginInterface::usesMore

4 calls to DisplayPluginBase::usesMore()
DisplayPluginBase::isMoreEnabled in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Whether the display is using the 'more' link or not.
DisplayPluginBase::optionsSummary in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Provides the default summary for options in the views UI.
DisplayPluginBase::useMoreAlways in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Should the enabled display more link be shown when no more items?
DisplayPluginBase::useMoreText in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Does the display have custom link text?

File

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

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

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