You are here

protected function Standard::buildPageList in Pagerer 8

Same name and namespace in other branches
  1. 8.2 src/Plugin/pagerer/Standard.php \Drupal\pagerer\Plugin\pagerer\Standard::buildPageList()

Return an array of pages.

Return value

array render array of pages items.

1 call to Standard::buildPageList()
Standard::buildPagerItems in src/Plugin/pagerer/Standard.php
Return the pager render array.
2 methods override Standard::buildPageList()
Adaptive::buildPageList in src/Plugin/pagerer/Adaptive.php
Return an array of pages.
Progressive::buildPageList in src/Plugin/pagerer/Progressive.php
Return an array of pages.

File

src/Plugin/pagerer/Standard.php, line 76

Class

Standard
Pager style alike standard Drupal pager theme.

Namespace

Drupal\pagerer\Plugin\pagerer

Code

protected function buildPageList() {
  return $this
    ->buildNeighborhoodPageList();
}