contacts_events-8.x-1.x-dev/modules/teams/src/TeamApplicationTypeListBuilder.php
modules/teams/src/TeamApplicationTypeListBuilder.php
<?php
namespace Drupal\contacts_events_teams;
use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;
/**
* Lists team application forms.
*/
class TeamApplicationTypeListBuilder extends ConfigEntityListBuilder {
/**
* {@inheritdoc}
*/
public function buildHeader() {
$header['label'] = $this->t('Form');
$header['id'] = $this->t('ID');
$header['status'] = $this->t('Status');
return $header + parent::buildHeader();
}
/**
* {@inheritdoc}
*/
public function buildRow(EntityInterface $entity) {
/** @var \Drupal\contacts_events_teams\Entity\TeamApplicationType $entity */
$row['label'] = $entity->label();
$row['id'] = $entity->id();
$row['status'] = $entity->status() ? $this->t('Enabled') : $this->t('Disabled');
return $row + parent::buildRow($entity);
}
}
