function ContentEntityBase::label

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::label()
  2. 8.9.x core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::label()
  3. 11.x core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::label()

Overrides EntityBase::label

1 call to ContentEntityBase::label()
Term::getName in core/modules/taxonomy/src/Entity/Term.php
Gets the term name.
4 methods override ContentEntityBase::label()
EntityTestNoLabel::label in core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.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.
User::label in core/modules/user/src/Entity/User.php
Gets the label of the entity.

File

core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 1293

Class

ContentEntityBase
Implements Entity Field API specific enhancements to the Entity class.

Namespace

Drupal\Core\Entity

Code

public function label() {
    if ($this->getEntityType()
        ->getKey('label')) {
        return $this->getEntityKey('label');
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.