You are here

public function DeployProcessorMemory::postProcess in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 plugins/DeployProcessorMemory.inc \DeployProcessorMemory::postProcess()

Runs all postprocess operations.

Parameters

array $operations: An array of all operations to be run. Each operation contains a 'callback' key with the name of the function to be run. Each function should take the aggregator as an argument.

Overrides DeployProcessor::postProcess

1 method overrides DeployProcessorMemory::postProcess()
DeployProcessorBatch::postProcess in plugins/DeployProcessorBatch.inc
Runs all postprocess operations.

File

plugins/DeployProcessorMemory.inc, line 75
In memory plugin for deploy Processor.

Class

DeployProcessorMemory
Class for basic memory-based processing

Code

public function postProcess(array $operations = array()) {
  $this
    ->processOperations($operations);
}