You are here

public function DisplayInterface::selectionCompleted in Entity Browser 8.2

Same name and namespace in other branches
  1. 8 src/DisplayInterface.php \Drupal\entity_browser\DisplayInterface::selectionCompleted()

Indicates completed selection.

Entity browser will call this function when selection is done. Display plugin is responsible for fetching selected entities and sending them to the initiating code.

Parameters

\Drupal\Core\Entity\EntityInterface[] $entities: Array of selected entities.

1 method overrides DisplayInterface::selectionCompleted()
DisplayBase::selectionCompleted in src/DisplayBase.php
Indicates completed selection.

File

src/DisplayInterface.php, line 73

Class

DisplayInterface
Defines the interface for entity browser displays.

Namespace

Drupal\entity_browser

Code

public function selectionCompleted(array $entities);