You are here

public static function ViewsBulkOperationsActionInterface::finished in Views Bulk Operations (VBO) 8.3

Same name and namespace in other branches
  1. 4.0.x src/Action/ViewsBulkOperationsActionInterface.php \Drupal\views_bulk_operations\Action\ViewsBulkOperationsActionInterface::finished()

Action batch execution finished callback.

Used to set finished message, redirect or execute some final logic.

Parameters

bool $success: Was the process successful?

array $results: Batch process results array.

array $operations: Performed operations array.

Return value

\Symfony\Component\HttpFoundation\RedirectResponse|null Bach redirect response or NULL.

File

src/Action/ViewsBulkOperationsActionInterface.php, line 64

Class

ViewsBulkOperationsActionInterface
Defines Views Bulk Operations action interface.

Namespace

Drupal\views_bulk_operations\Action

Code

public static function finished($success, array $results, array $operations) : ?RedirectResponse;