public function Media::label in Drupal 8
Same name and namespace in other branches
- 9 core/modules/media/src/Entity/Media.php \Drupal\media\Entity\Media::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 ContentEntityBase::label
File
- core/
modules/ media/ src/ Entity/ Media.php, line 108
Class
- Media
- Defines the media entity class.
Namespace
Drupal\media\EntityCode
public function label() {
return $this
->getName();
}