public function ParagraphsTypeListBuilder::buildRow in Paragraphs 8
Builds a row for an entity in the entity listing.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.
Return value
array A render array structure of fields for this entity.
Overrides EntityListBuilder::buildRow
See also
\Drupal\Core\Entity\EntityListBuilder::render()
File
- src/
Controller/ ParagraphsTypeListBuilder.php, line 30
Class
- ParagraphsTypeListBuilder
- Provides a listing of ParagraphsType.
Namespace
Drupal\paragraphs\ControllerCode
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);
}