StatusTypeListBuilder.php 723 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Drupal\statusmessage;
  3. use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
  4. use Drupal\Core\Entity\EntityInterface;
  5. /**
  6. * Provides a listing of Status type entities.
  7. */
  8. class StatusTypeListBuilder extends ConfigEntityListBuilder {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function buildHeader() {
  13. $header['label'] = $this->t('Status type');
  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. }