You are here

public function TestRouteController::pageTitleTranslatableMarkup in Easy Breadcrumb 8

Same name and namespace in other branches
  1. 2.x tests/modules/easy_breadcrumb_test/src/Controller/TestRouteController.php \Drupal\easy_breadcrumb_test\Controller\TestRouteController::pageTitleTranslatableMarkup()

Returns the page title as TranslatableMarkup.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The page title.

1 string reference to 'TestRouteController::pageTitleTranslatableMarkup'
easy_breadcrumb_test.routing.yml in tests/modules/easy_breadcrumb_test/easy_breadcrumb_test.routing.yml
tests/modules/easy_breadcrumb_test/easy_breadcrumb_test.routing.yml

File

tests/modules/easy_breadcrumb_test/src/Controller/TestRouteController.php, line 58

Class

TestRouteController
Provides block routines for search server-specific routes.

Namespace

Drupal\easy_breadcrumb_test\Controller

Code

public function pageTitleTranslatableMarkup() {
  return $this
    ->t('TranslatableMarkup');
}