You are here

SmsGatewayListBuilder.php in SMS Framework 2.1.x

Namespace

Drupal\sms\Lists

File

src/Lists/SmsGatewayListBuilder.php
View source
<?php

declare (strict_types=1);
namespace Drupal\sms\Lists;

use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;

/**
 * Builds a list of SMS Gateway plugins.
 */
class SmsGatewayListBuilder extends ConfigEntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = $this
      ->t('Label');
    $header['gateway'] = $this
      ->t('Gateway');
    $header['status'] = $this
      ->t('Status');
    return $header + parent::buildHeader();
  }

  /**
   * {@inheritdoc}
   */
  public function buildRow(EntityInterface $entity) {

    /** @var \Drupal\sms\Entity\SmsGatewayInterface $entity */
    $row['label'] = $entity
      ->label();
    $row['gateway'] = $entity
      ->getPlugin()
      ->getPluginDefinition()['label'];
    $row['status'] = $entity
      ->status() ? $this
      ->t('Enabled') : $this
      ->t('Disabled');
    return $row + parent::buildRow($entity);
  }

  /**
   * {@inheritdoc}
   */
  public function render() {
    $render = parent::render();
    $render['table']['#empty'] = t('No gateways found.');
    return $render;
  }

}

Classes

Namesort descending Description
SmsGatewayListBuilder Builds a list of SMS Gateway plugins.