You are here

public function DisplayPluginBase::usesMore in Views (for Drupal 7) 8.3

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

Return value

bool

6 calls to DisplayPluginBase::usesMore()
DisplayPluginBase::isMoreEnabled in lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Whether the display is using the 'more' link or not.
DisplayPluginBase::optionsSummary in lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Provide the default summary for options in the views UI.
DisplayPluginBase::preExecute in lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Set up any variables on the view prior to execution. These are separated from execute because they are extremely common and unlikely to be overridden on an individual display.
DisplayPluginBase::renderMoreLink in lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Render the 'more' link
DisplayPluginBase::useMoreAlways in lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Should the enabled display more link be shown when no more items?

... See full list

File

lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php, line 287
Definition of 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 usesMore() {
  return $this->usesMore;
}