public function ContentEntityBase::label in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::label()
Gets the label of the entity.
Return value
string|null The label of the entity, or NULL if there is no label defined.
Overrides EntityBase::label
1 call to ContentEntityBase::label()
- Term::getName in core/
modules/ taxonomy/ src/ Entity/ Term.php - Gets the term name.
6 methods override ContentEntityBase::label()
- EntityTestNoLabel::label in core/
modules/ system/ tests/ modules/ entity_test/ src/ Entity/ EntityTestNoLabel.php - Gets the label of the entity.
- Feed::label in core/
modules/ aggregator/ src/ Entity/ Feed.php - Gets the label of the entity.
- Item::label in core/
modules/ aggregator/ src/ Entity/ Item.php - Gets the label of the entity.
- Media::label in core/
modules/ media/ src/ Entity/ Media.php - Gets the label of the entity.
- PathAlias::label in core/
modules/ path_alias/ src/ Entity/ PathAlias.php - Gets the label of the entity.
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php, line 1246
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\EntityCode
public function label() {
if ($this
->getEntityType()
->getKey('label')) {
return $this
->getEntityKey('label');
}
}