function ActionListBuilder::buildRow
Same name in other branches
- 9 core/modules/action/src/ActionListBuilder.php \Drupal\action\ActionListBuilder::buildRow()
- 10 core/modules/action/src/ActionListBuilder.php \Drupal\action\ActionListBuilder::buildRow()
- 11.x core/modules/action/src/ActionListBuilder.php \Drupal\action\ActionListBuilder::buildRow()
Overrides EntityListBuilder::buildRow
File
-
core/
modules/ action/ src/ ActionListBuilder.php, line 76
Class
- ActionListBuilder
- Defines a class to build a listing of action entities.
Namespace
Drupal\actionCode
public function buildRow(EntityInterface $entity) {
$row['type'] = $entity->getType();
$row['label'] = $entity->label();
if ($this->hasConfigurableActions) {
$row += parent::buildRow($entity);
}
return $row;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.