632170bfe7466d612457fcd288cee0dc474a47d4
[yaffs-website] / Plugin / EntityBrowser / FieldWidgetDisplay / EntityLabel.php
1 <?php
2
3 namespace Drupal\entity_browser\Plugin\EntityBrowser\FieldWidgetDisplay;
4
5 use Drupal\Core\Entity\EntityInterface;
6 use Drupal\entity_browser\FieldWidgetDisplayBase;
7
8 /**
9  * Displays a label of the entity.
10  *
11  * @EntityBrowserFieldWidgetDisplay(
12  *   id = "label",
13  *   label = @Translation("Entity label"),
14  *   description = @Translation("Displays entity with a label.")
15  * )
16  */
17 class EntityLabel extends FieldWidgetDisplayBase {
18
19   /**
20    * {@inheritdoc}
21    */
22   public function view(EntityInterface $entity) {
23     return $entity->label();
24   }
25
26 }