function ActionListBuilder::buildRow

Same name and namespace in other branches
  1. 9 core/modules/action/src/ActionListBuilder.php \Drupal\action\ActionListBuilder::buildRow()
  2. 8.9.x core/modules/action/src/ActionListBuilder.php \Drupal\action\ActionListBuilder::buildRow()
  3. 10 core/modules/action/src/ActionListBuilder.php \Drupal\action\ActionListBuilder::buildRow()

Overrides EntityListBuilder::buildRow

File

core/modules/action/src/ActionListBuilder.php, line 90

Class

ActionListBuilder
Defines a class to build a listing of action entities.

Namespace

Drupal\action

Code

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.