public function NodeViewController::title in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/node/src/Controller/NodeViewController.php \Drupal\node\Controller\NodeViewController::title()
The _title_callback for the page that renders a single node.
Parameters
\Drupal\Core\Entity\EntityInterface $node: The current node.
Return value
string The page title.
File
- core/
modules/ node/ src/ Controller/ NodeViewController.php, line 58 - Contains \Drupal\node\Controller\NodeViewController.
Class
- NodeViewController
- Defines a controller to render a single node.
Namespace
Drupal\node\ControllerCode
public function title(EntityInterface $node) {
return $this->entityManager
->getTranslationFromContext($node)
->label();
}