public function EmailListBuilder::buildRow in Commerce Email 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/
EmailListBuilder.php, line 27
Class
- EmailListBuilder
- Defines the list builder for emails.
Namespace
Drupal\commerce_emailCode
public function buildRow(EntityInterface $entity) {
/** @var \Drupal\commerce_email\Entity\EmailInterface $entity */
$row['label'] = $entity
->label();
$row['event'] = $entity
->getEvent()
->getLabel();
$row['status'] = $entity
->status() ? $this
->t('Enabled') : $this
->t('Disabled');
return $row + parent::buildRow($entity);
}