function CommentController::commentPermalinkTitle

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Controller/CommentController.php \Drupal\comment\Controller\CommentController::commentPermalinkTitle()
  2. 8.9.x core/modules/comment/src/Controller/CommentController.php \Drupal\comment\Controller\CommentController::commentPermalinkTitle()
  3. 10 core/modules/comment/src/Controller/CommentController.php \Drupal\comment\Controller\CommentController::commentPermalinkTitle()

The _title_callback for the page that renders the comment permalink.

Parameters

\Drupal\comment\CommentInterface $comment: The current comment.

Return value

string The translated comment subject.

1 string reference to 'CommentController::commentPermalinkTitle'
comment.routing.yml in core/modules/comment/comment.routing.yml
core/modules/comment/comment.routing.yml

File

core/modules/comment/src/Controller/CommentController.php, line 159

Class

CommentController
Controller for the comment entity.

Namespace

Drupal\comment\Controller

Code

public function commentPermalinkTitle(CommentInterface $comment) {
    return $this->entityRepository
        ->getTranslationFromContext($comment)
        ->label();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.