public function CurrencyListBuilder::buildRow in Price 8
Same name and namespace in other branches
- 3.x src/CurrencyListBuilder.php \Drupal\price\CurrencyListBuilder::buildRow()
- 2.0.x src/CurrencyListBuilder.php \Drupal\price\CurrencyListBuilder::buildRow()
- 2.x src/CurrencyListBuilder.php \Drupal\price\CurrencyListBuilder::buildRow()
- 3.0.x src/CurrencyListBuilder.php \Drupal\price\CurrencyListBuilder::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
- src/
CurrencyListBuilder.php, line 28
Class
- CurrencyListBuilder
- Defines the list builder for currencies.
Namespace
Drupal\priceCode
public function buildRow(EntityInterface $entity) {
$row = [
'name' => $entity
->label(),
'currencyCode' => $entity
->id(),
];
return $row + parent::buildRow($entity);
}