You are here

public function AttributeValueDelete::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/AttributeValueDelete.php, line 78

Class

AttributeValueDelete
Delete variations.

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();
  }
}