function DisplayPluginBase::renderMoreLink
Renders the 'more' link.
Overrides DisplayPluginInterface::renderMoreLink
File
- 
              core/modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php, line 2103 
Class
- DisplayPluginBase
- Base class for views display plugins.
Namespace
Drupal\views\Plugin\views\displayCode
public function renderMoreLink() {
  $hasMoreRecords = !empty($this->view->pager) && $this->view->pager
    ->hasMoreRecords();
  if ($this->isMoreEnabled() && ($this->useMoreAlways() || $hasMoreRecords)) {
    $url = $this->getMoreUrl();
    return [
      '#type' => 'more_link',
      '#url' => $url,
      '#title' => $this->useMoreText(),
      '#view' => $this->view,
    ];
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
