function PagerPluginBase::getHeadingLevel

Same name and namespace in other branches
  1. 10 core/modules/views/src/Plugin/views/pager/PagerPluginBase.php \Drupal\views\Plugin\views\pager\PagerPluginBase::getHeadingLevel()

Get the pager heading tag.

Return value

string Heading level for the pager.

2 calls to PagerPluginBase::getHeadingLevel()
Full::render in core/modules/views/src/Plugin/views/pager/Full.php
Return the renderable array of the pager.
Mini::render in core/modules/views/src/Plugin/views/pager/Mini.php
Return the renderable array of the pager.

File

core/modules/views/src/Plugin/views/pager/PagerPluginBase.php, line 95

Class

PagerPluginBase
Base class for views pager plugins.

Namespace

Drupal\views\Plugin\views\pager

Code

public function getHeadingLevel() : string {
    return $this->options['pagination_heading_level'] ?? 'h4';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.