function node_preprocess_html
Same name in other branches
- 9 core/modules/node/node.module \node_preprocess_html()
- 10 core/modules/node/node.module \node_preprocess_html()
- 11.x core/modules/node/node.module \node_preprocess_html()
Implements hook_preprocess_HOOK() for HTML document templates.
File
-
core/
modules/ node/ node.module, line 561
Code
function node_preprocess_html(&$variables) {
// If on an individual node page or node preview page, add the node type to
// the body classes.
if (($node = \Drupal::routeMatch()->getParameter('node')) || ($node = \Drupal::routeMatch()->getParameter('node_preview'))) {
if ($node instanceof NodeInterface) {
$variables['node_type'] = $node->getType();
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.