You are here

public function CommentController::commentPermalinkTitle in Drupal 9

Same name and namespace in other branches
  1. 8 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 175

Class

CommentController
Controller for the comment entity.

Namespace

Drupal\comment\Controller

Code

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