HeartbeatStreamListBuilder.php.bak 736 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Drupal\heartbeat8;
  3. use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
  4. use Drupal\Core\Entity\EntityInterface;
  5. /**
  6. * Provides a listing of Heartbeat stream entities.
  7. */
  8. class HeartbeatStreamListBuilder extends ConfigEntityListBuilder {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function buildHeader() {
  13. $header['label'] = $this->t('Heartbeat stream');
  14. $header['id'] = $this->t('Machine name');
  15. return $header + parent::buildHeader();
  16. }
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public function buildRow(EntityInterface $entity) {
  21. $row['label'] = $entity->label();
  22. $row['id'] = $entity->id();
  23. // You probably want a few more properties here...
  24. return $row + parent::buildRow($entity);
  25. }
  26. }