class EdgeEntityTitleProvider in Apigee Edge 8
Provides default page titles for Apigee Edge entities.
Hierarchy
- class \Drupal\Core\Entity\Controller\EntityController implements ContainerInjectionInterface uses UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\apigee_edge\Entity\EdgeEntityTitleProvider
Expanded class hierarchy of EdgeEntityTitleProvider
1 file declares its use of EdgeEntityTitleProvider
- TeamTitleProvider.php in modules/
apigee_edge_teams/ src/ Entity/ TeamTitleProvider.php
File
- src/
Entity/ EdgeEntityTitleProvider.php, line 30
Namespace
Drupal\apigee_edge\EntityView source
class EdgeEntityTitleProvider extends EntityController {
/**
* {@inheritdoc}
*/
public function title(RouteMatchInterface $route_match, EntityInterface $_entity = NULL) {
if ($entity = $this
->doGetEntity($route_match, $_entity)) {
return $this
->t('@label @entity_type', [
'@label' => $entity
->label(),
'@entity_type' => mb_strtolower($this->entityTypeManager
->getDefinition($entity
->getEntityTypeId())
->getSingularLabel()),
]);
}
return parent::title($route_match, $_entity);
}
/**
* {@inheritdoc}
*/
public function editTitle(RouteMatchInterface $route_match, EntityInterface $_entity = NULL) {
if ($entity = $this
->doGetEntity($route_match, $_entity)) {
return $this
->t('Edit %label @entity_type', [
'%label' => $entity
->label(),
'@entity_type' => mb_strtolower($this->entityTypeManager
->getDefinition($entity
->getEntityTypeId())
->getSingularLabel()),
]);
}
return parent::editTitle($route_match, $_entity);
}
/**
* {@inheritdoc}
*/
public function deleteTitle(RouteMatchInterface $route_match, EntityInterface $_entity = NULL) {
if ($entity = $this
->doGetEntity($route_match, $_entity)) {
// TODO Investigate why entity delete forms (confirm forms) does not
// display this as a page title. This issue also existed before.
return $this
->t('Delete %label @entity_type', [
'%label' => $entity
->label(),
'@entity_type' => mb_strtolower($this->entityTypeManager
->getDefinition($entity
->getEntityTypeId())
->getSingularLabel()),
]);
}
return parent::deleteTitle($route_match, $_entity);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EdgeEntityTitleProvider:: |
public | function |
Provides a generic delete title callback. Overrides EntityController:: |
|
EdgeEntityTitleProvider:: |
public | function |
Provides a generic edit title callback. Overrides EntityController:: |
|
EdgeEntityTitleProvider:: |
public | function |
Provides a generic title callback for a single entity. Overrides EntityController:: |
|
EntityController:: |
protected | property | The entity repository. | |
EntityController:: |
protected | property | The entity type bundle info. | |
EntityController:: |
protected | property | The entity manager. | |
EntityController:: |
protected | property | The renderer. | |
EntityController:: |
public | function | Provides a generic add title callback for entities with bundles. | |
EntityController:: |
public | function | Displays add links for the available bundles. | |
EntityController:: |
public | function | Provides a generic add title callback for an entity type. | |
EntityController:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
|
EntityController:: |
protected | function | Determines the entity. | |
EntityController:: |
protected | function | Expands the bundle information with descriptions, if known. | |
EntityController:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
EntityController:: |
public | function | Constructs a new EntityController. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |