X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fparagraphs%2Fsrc%2FController%2FParagraphsTypeListBuilder.php;fp=web%2Fmodules%2Fcontrib%2Fparagraphs%2Fsrc%2FController%2FParagraphsTypeListBuilder.php;h=48fd9c092da6192fb1925176fbe4c764341e5861;hp=9b4a985fb415aa209465de5ee50b3616f28f091b;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/modules/contrib/paragraphs/src/Controller/ParagraphsTypeListBuilder.php b/web/modules/contrib/paragraphs/src/Controller/ParagraphsTypeListBuilder.php index 9b4a985fb..48fd9c092 100644 --- a/web/modules/contrib/paragraphs/src/Controller/ParagraphsTypeListBuilder.php +++ b/web/modules/contrib/paragraphs/src/Controller/ParagraphsTypeListBuilder.php @@ -14,8 +14,13 @@ class ParagraphsTypeListBuilder extends ConfigEntityListBuilder { * {@inheritdoc} */ public function buildHeader() { - $header['label'] = $this->t('Paragraphs types'); + $header['icon_file'] = [ + 'data' => $this->t('Icon'), + ]; + $header['label'] = $this->t('Label'); $header['id'] = $this->t('Machine name'); + $header['description'] = $this->t('Description'); + return $header + parent::buildHeader(); } @@ -23,8 +28,19 @@ class ParagraphsTypeListBuilder extends ConfigEntityListBuilder { * {@inheritdoc} */ public function buildRow(EntityInterface $entity) { + $row['icon_file'] = []; + if ($icon_url = $entity->getIconUrl()) { + $row['icon_file']['class'][] = 'paragraphs-type-icon'; + $row['icon_file']['data'] = [ + '#theme' => 'image', + '#uri' => $icon_url, + '#width' => 32, + '#height' => 32, + ]; + } $row['label'] = $entity->label(); $row['id'] = $entity->id(); + $row['description']['data'] = ['#markup' => $entity->getDescription()]; // You probably want a few more properties here... return $row + parent::buildRow($entity); } @@ -43,4 +59,13 @@ class ParagraphsTypeListBuilder extends ConfigEntityListBuilder { return $operations; } + /** + * {@inheritdoc} + */ + public function render() { + $build = parent::render(); + $build['#attached']['library'][] = 'paragraphs/drupal.paragraphs.list_builder'; + return $build; + } + }