You are here

public function EntityController::addTitle in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Controller/EntityController.php \Drupal\Core\Entity\Controller\EntityController::addTitle()

Provides a generic add title callback for an entity type.

Parameters

string $entity_type_id: The entity type ID.

Return value

string The title for the entity add page.

1 call to EntityController::addTitle()
EntityController::addBundleTitle in core/lib/Drupal/Core/Entity/Controller/EntityController.php
Provides a generic add title callback for entities with bundles.

File

core/lib/Drupal/Core/Entity/Controller/EntityController.php, line 203

Class

EntityController
Provides the add-page and title callbacks for entities.

Namespace

Drupal\Core\Entity\Controller

Code

public function addTitle($entity_type_id) {
  $entity_type = $this->entityTypeManager
    ->getDefinition($entity_type_id);
  return $this
    ->t('Add @entity-type', [
    '@entity-type' => $entity_type
      ->getSingularLabel(),
  ]);
}