1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Drupal\heartbeat8;
- use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
- use Drupal\Core\Entity\EntityInterface;
- /**
- * Provides a listing of Heartbeat stream entities.
- */
- class HeartbeatStreamListBuilder extends ConfigEntityListBuilder {
- /**
- * {@inheritdoc}
- */
- public function buildHeader() {
- $header['label'] = $this->t('Heartbeat stream');
- $header['id'] = $this->t('Machine name');
- return $header + parent::buildHeader();
- }
- /**
- * {@inheritdoc}
- */
- public function buildRow(EntityInterface $entity) {
- $row['label'] = $entity->label();
- $row['id'] = $entity->id();
- // You probably want a few more properties here...
- return $row + parent::buildRow($entity);
- }
- }
|