function 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 219
Class
- EntityController
- Provides the add-page and title callbacks for entities.
Namespace
Drupal\Core\Entity\ControllerCode
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(),
]);
}