public function EntityBase::label in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::label()
- 9 core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::label()
3 calls to EntityBase::label()
- ConfigurableLanguage::getName in core/
modules/ language/ src/ Entity/ ConfigurableLanguage.php - Gets the name of the language.
- FieldConfigBase::getLabel in core/
lib/ Drupal/ Core/ Field/ FieldConfigBase.php - Returns a human readable label.
- FilterFormat::preSave in core/
modules/ filter/ src/ Entity/ FilterFormat.php - Acts on an entity before the presave hook is invoked.
5 methods override EntityBase::label()
- Block::label in core/
modules/ block/ src/ Entity/ Block.php - Gets the label of the entity.
- ContentEntityBase::label in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Gets the label of the entity.
- Editor::label in core/
modules/ editor/ src/ Entity/ Editor.php - Gets the label of the entity.
- LayoutBuilderEntityViewDisplay::label in core/
modules/ layout_builder/ src/ Entity/ LayoutBuilderEntityViewDisplay.php - @todo Move this upstream in https://www.drupal.org/node/2939931.
- View::label in core/
modules/ views/ src/ Entity/ View.php - Gets the label of the entity.
File
- core/
lib/ Drupal/ Core/ Entity/ EntityBase.php, line 150
Class
- EntityBase
- Defines a base entity class.
Namespace
Drupal\Core\EntityCode
public function label() {
if (($label_key = $this
->getEntityType()
->getKey('label')) && isset($this->{$label_key})) {
return $this->{$label_key};
}
}