You are here

public function WebformOptionsListBuilder::buildOperations in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/WebformOptionsListBuilder.php \Drupal\webform\WebformOptionsListBuilder::buildOperations()

Builds a renderable list of operation links for the entity.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity on which the linked operations will be performed.

Return value

array A renderable array of operation links.

Overrides EntityListBuilder::buildOperations

See also

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

File

src/WebformOptionsListBuilder.php, line 231

Class

WebformOptionsListBuilder
Defines a class to build a listing of webform options entities.

Namespace

Drupal\webform

Code

public function buildOperations(EntityInterface $entity) {
  return parent::buildOperations($entity) + [
    '#prefix' => '<div class="webform-dropbutton">',
    '#suffix' => '</div>',
  ];
}