You are here

public function EntityformTypeListController::buildRow in Entityform 8.3

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

Overrides use Drupal\Core\Config\Entity\ConfigEntityListController::buildRow().

File

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

Class

EntityformTypeListController

Namespace

Drupal\entityform

Code

public function buildRow(EntityInterface $entity) {
  $row['form'] = $this
    ->getLabel($entity);
  return $row + parent::buildRow($entity);
}