You are here

public function BookOutlineStorageInterface::getBookMenuTree in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/book/src/BookOutlineStorageInterface.php \Drupal\book\BookOutlineStorageInterface::getBookMenuTree()
  2. 10 core/modules/book/src/BookOutlineStorageInterface.php \Drupal\book\BookOutlineStorageInterface::getBookMenuTree()

Builds tree data used for the menu tree.

Parameters

int $bid: The ID of the book that we are building the tree for.

array $parameters: An associative array of build parameters. For info about individual parameters see BookManager::bookTreeBuild().

int $min_depth: The minimum depth of book links in the resulting tree.

int $max_depth: The maximum supported depth of the book tree.

Return value

array Array of loaded book links.

1 method overrides BookOutlineStorageInterface::getBookMenuTree()
BookOutlineStorage::getBookMenuTree in core/modules/book/src/BookOutlineStorage.php
Builds tree data used for the menu tree.

File

core/modules/book/src/BookOutlineStorageInterface.php, line 98

Class

BookOutlineStorageInterface
Defines a common interface for book outline storage classes.

Namespace

Drupal\book

Code

public function getBookMenuTree($bid, $parameters, $min_depth, $max_depth);