You are here

public function DeployProcessorMemory::preProcess in Deploy - Content Staging 7.2

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

Runs all preprocess 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::preProcess

File

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

Class

DeployProcessorMemory
Class for basic memory-based processing

Code

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