You are here

IdpListBuilder.php in SAML Service Provider 4.x

File

src/Controller/IdpListBuilder.php
View source
<?php

namespace Drupal\saml_sp\Controller;

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

/**
 * Provides a listing of Example.
 */
class IdpListBuilder extends ConfigEntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = $this
      ->t('Label');
    $header['id'] = $this
      ->t('Machine name');
    $header['url'] = $this
      ->t('URL');
    return $header + parent::buildHeader();
  }

  /**
   * {@inheritdoc}
   */
  public function buildRow(EntityInterface $entity) {
    $row['label'] = $entity
      ->label();
    $row['id'] = $entity
      ->id();
    $row['url'] = $entity
      ->getLoginUrl();

    // You probably want a few more properties here...
    if (!empty($entity
      ->id())) {
      return $row + parent::buildRow($entity);
    }
    return $row;
  }

}

Classes

Namesort descending Description
IdpListBuilder Provides a listing of Example.