Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. EntityController.php

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\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(),
    ]);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal