You are here

public function DisplayPluginBase::useMoreAlways in Drupal 9

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

Should the enabled display more link be shown when no more items?

Overrides DisplayPluginInterface::useMoreAlways

2 calls to DisplayPluginBase::useMoreAlways()
DisplayPluginBase::preExecute in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Sets up any variables on the view prior to execution.
DisplayPluginBase::renderMoreLink in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Renders the 'more' link.

File

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

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

public function useMoreAlways() {
  if ($this
    ->usesMore()) {
    return $this
      ->getOption('use_more_always');
  }
  return FALSE;
}