You are here

public function ImporterInterface::finished in CSV Importer 8

Batch finish handler.

Parameters

bool $success: A boolean indicating whether the batch has completed successfully.

array $results: The value set in $context['results'] by callback_batch_operation().

array $operations: Contains the operations that remained unprocessed.

Return value

array Prepared data.

1 method overrides ImporterInterface::finished()
ImporterBase::finished in src/Plugin/ImporterBase.php
Batch finish handler.

File

src/Plugin/ImporterInterface.php, line 47

Class

ImporterInterface
Importer manager interface.

Namespace

Drupal\csv_importer\Plugin

Code

public function finished($success, array $results, array $operations);