protected function BookExport::bookNodeExport in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/book/src/BookExport.php \Drupal\book\BookExport::bookNodeExport()
Generates printer-friendly HTML for a node.
Parameters
\Drupal\node\NodeInterface $node: The node that will be output.
string $children: (optional) All the rendered child nodes within the current node. Defaults to an empty string.
Return value
array A render array for the exported HTML of a given node.
See also
\Drupal\book\BookExport::exportTraverse()
File
- core/
modules/ book/ src/ BookExport.php, line 137 - Contains \Drupal\book\BookExport.
Class
- BookExport
- Provides methods for exporting book to different formats.
Namespace
Drupal\bookCode
protected function bookNodeExport(NodeInterface $node, $children = '') {
$build = $this->viewBuilder
->view($node, 'print', NULL);
unset($build['#theme']);
return array(
'#theme' => 'book_node_export_html',
'#content' => $build,
'#node' => $node,
'#children' => $children,
);
}