Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. NodePreviewController.php

function NodePreviewController::title

The _title_callback for the page that renders a single node in preview.

Parameters

\Drupal\Core\Entity\EntityInterface $node_preview: The current node.

Return value

string The page title.

1 string reference to 'NodePreviewController::title'
node.routing.yml in core/modules/node/node.routing.yml
core/modules/node/node.routing.yml

File

core/modules/node/src/Controller/NodePreviewController.php, line 74

Class

NodePreviewController
Defines a controller to render a single node in preview.

Namespace

Drupal\node\Controller

Code

public function title(EntityInterface $node_preview) {
    return $this->entityRepository
        ->getTranslationFromContext($node_preview)
        ->label();
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal