You are here

public function ParagraphSetListBuilder::buildRow in Paragraphs frontend ui 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/ParagraphSetListBuilder.php, line 28

Class

ParagraphSetListBuilder
Defines a class to build a listing of Paragraph set entities.

Namespace

Drupal\paragraphs_frontend_ui

Code

public function buildRow(EntityInterface $entity) {

  /* @var $entity \Drupal\paragraphs_frontend_ui\Entity\ParagraphSet */
  $row['id'] = $entity
    ->id();
  $row['name'] = Link::createFromRoute($entity
    ->label(), 'entity.paragraph_set.edit_form', [
    'paragraph_set' => $entity
      ->id(),
  ]);
  return $row + parent::buildRow($entity);
}