protected function BookManager::flatBookTree in Drupal 10
Same name and namespace in other branches
- 8 core/modules/book/src/BookManager.php \Drupal\book\BookManager::flatBookTree()
- 9 core/modules/book/src/BookManager.php \Drupal\book\BookManager::flatBookTree()
Recursively converts a tree of menu links to a flat array.
Parameters
array $tree: A tree of menu links in an array.
array $flat: A flat array of the menu links from $tree, passed by reference.
See also
File
- core/
modules/ book/ src/ BookManager.php, line 794
Class
- BookManager
- Defines a book manager.
Namespace
Drupal\bookCode
protected function flatBookTree(array $tree, array &$flat) {
foreach ($tree as $data) {
$flat[$data['link']['nid']] = $data['link'];
if ($data['below']) {
$this
->flatBookTree($data['below'], $flat);
}
}
}