function book_node_load
Same name in other branches
- 7.x modules/book/book.module \book_node_load()
- 9 core/modules/book/book.module \book_node_load()
- 10 core/modules/book/book.module \book_node_load()
- 11.x core/modules/book/book.module \book_node_load()
Implements hook_ENTITY_TYPE_load() for node entities.
File
-
core/
modules/ book/ book.module, line 215
Code
function book_node_load($nodes) {
/** @var \Drupal\book\BookManagerInterface $book_manager */
$book_manager = \Drupal::service('book.manager');
$links = $book_manager->loadBookLinks(array_keys($nodes), FALSE);
foreach ($links as $record) {
$nodes[$record['nid']]->book = $record;
$nodes[$record['nid']]->book['link_path'] = 'node/' . $record['nid'];
$nodes[$record['nid']]->book['link_title'] = $nodes[$record['nid']]->label();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.