You are here

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

Does the display have custom link text?

Overrides DisplayPluginInterface::useMoreText

1 call to DisplayPluginBase::useMoreText()
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 355

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

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