You are here

private function NextPreviousBlock::generateNext in Next Previous Post Block (Node or Page Pagination) 8.5

Same name and namespace in other branches
  1. 8 src/Plugin/Block/NextPreviousBlock.php \Drupal\nextpre\Plugin\Block\NextPreviousBlock::generateNext()
  2. 9.0.x src/Plugin/Block/NextPreviousBlock.php \Drupal\nextpre\Plugin\Block\NextPreviousBlock::generateNext()
  3. 1.0.x src/Plugin/Block/NextPreviousBlock.php \Drupal\nextpre\Plugin\Block\NextPreviousBlock::generateNext()

Lookup the next node,oldest node which is still younger than the node.

Parameters

string $current_nid: Show current page node id.

Return value

array A render array for a next node.

1 call to NextPreviousBlock::generateNext()
NextPreviousBlock::build in src/Plugin/Block/NextPreviousBlock.php
Builds and returns the renderable array for this block plugin.

File

src/Plugin/Block/NextPreviousBlock.php, line 199

Class

NextPreviousBlock
Provides a 'Next Previous' block.

Namespace

Drupal\nextpre\Plugin\Block

Code

private function generateNext($node) {
  return $this
    ->generateNextPrevious($node, 'next');
}