You are here

class EntityformTypeListController in Entityform 8.3

Same name and namespace in other branches
  1. 8.2 lib/Drupal/entityform/EntityformTypeListController.php \Drupal\entityform\EntityformTypeListController

Hierarchy

Expanded class hierarchy of EntityformTypeListController

File

lib/Drupal/entityform/EntityformTypeListController.php, line 13

Namespace

Drupal\entityform
View source
class EntityformTypeListController extends ConfigEntityListController {
  public function buildHeader() {
    $headers['form'] = $this
      ->t('Form');
    return $headers + parent::buildHeader();
  }

  /**
   * Overrides use Drupal\Core\Config\Entity\ConfigEntityListController::buildRow().
   */
  public function buildRow(EntityInterface $entity) {
    $row['form'] = $this
      ->getLabel($entity);
    return $row + parent::buildRow($entity);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityformTypeListController::buildHeader public function
EntityformTypeListController::buildRow public function Overrides use Drupal\Core\Config\Entity\ConfigEntityListController::buildRow().