public function ConfigTestListBuilder::buildRow in Drupal 8
Same name and namespace in other branches
- 9 core/modules/config/tests/config_test/src/ConfigTestListBuilder.php \Drupal\config_test\ConfigTestListBuilder::buildRow()
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
- core/
modules/ config/ tests/ config_test/ src/ ConfigTestListBuilder.php, line 27
Class
- ConfigTestListBuilder
- Defines a class to build a listing of ConfigTest entities.
Namespace
Drupal\config_testCode
public function buildRow(EntityInterface $entity) {
$row['label'] = $entity
->label();
$row['id'] = $entity
->id();
return $row + parent::buildRow($entity);
}