public function TeamAppListByTeam::pageTitle in Apigee Edge 8
Returns the title of the "team app list by team" page.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The title of the page.
File
- modules/
apigee_edge_teams/ src/ Entity/ ListBuilder/ TeamAppListByTeam.php, line 131
Class
- TeamAppListByTeam
- Lists team apps of a team on the UI.
Namespace
Drupal\apigee_edge_teams\Entity\ListBuilderCode
public function pageTitle() : TranslatableMarkup {
return $this
->t('@team_apps', [
'@team_apps' => $this->entityType
->getCollectionLabel(),
]);
}