You are here

public function AppListBuilder::buildRow in Apigee Edge 8

Builds a row for an entity in the entity listing.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.

Return value

array A render array structure of fields for this entity.

Overrides EntityListBuilder::buildRow

See also

\Drupal\Core\Entity\EntityListBuilder::render()

File

src/Entity/ListBuilder/AppListBuilder.php, line 170

Class

AppListBuilder
General app list builder for developer and team apps.

Namespace

Drupal\apigee_edge\Entity\ListBuilder

Code

public function buildRow(EntityInterface $entity) {

  // We may return multiple rows for one entity which is not supported by
  // the parent class. (See render().)
  return [];
}