You are here

public function BookManagerInterface::loadBookLinks in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/book/src/BookManagerInterface.php \Drupal\book\BookManagerInterface::loadBookLinks()

Loads multiple book entries.

The entries of a book entry is documented in \Drupal\book\BookOutlineStorageInterface::loadMultiple.

If $translate is TRUE, it also checks access ('access' key) and loads the title from the node itself.

Parameters

int[] $nids: An array of nids to load.

bool $translate: If TRUE, set access, title, and other elements.

Return value

array[] The book data of each node keyed by NID.

See also

\Drupal\book\BookOutlineStorageInterface::loadMultiple

1 method overrides BookManagerInterface::loadBookLinks()
BookManager::loadBookLinks in core/modules/book/src/BookManager.php
Loads multiple book entries.

File

core/modules/book/src/BookManagerInterface.php, line 91

Class

BookManagerInterface
Provides an interface defining a book manager.

Namespace

Drupal\book

Code

public function loadBookLinks($nids, $translate = TRUE);