You are here

public function WebformOptionsCustomListBuilder::buildOperations in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_options_custom/src/WebformOptionsCustomListBuilder.php \Drupal\webform_options_custom\WebformOptionsCustomListBuilder::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

modules/webform_options_custom/src/WebformOptionsCustomListBuilder.php, line 242

Class

WebformOptionsCustomListBuilder
Defines a class to build a listing of webform options custom entities.

Namespace

Drupal\webform_options_custom

Code

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