You are here

public function AttributeValueName::executeMultiple in Commerce Bulk 8

Executes the plugin for an array of objects.

Parameters

array $objects: An array of entities.

Overrides ActionBase::executeMultiple

File

src/Plugin/Action/AttributeValueName.php, line 109

Class

AttributeValueName
Duplicate attribute value.

Namespace

Drupal\commerce_bulk\Plugin\Action

Code

public function executeMultiple(array $attributes) {
  if ($attributes) {
    $ids = [];
    foreach ($attributes as $attribute) {
      $ids[] = $attribute
        ->id();
    }
    $query = [
      'destination' => \Drupal::request()
        ->getRequestUri(),
      'ids' => implode('|', $ids),
    ];
    $path = Url::fromUserInput('/admin/config/system/actions/configure/' . $this
      ->getPluginId(), [
      'query' => $query,
    ])
      ->toString();
    $response = new RedirectResponse($path);
    $response
      ->send();
  }
}