You are here

public function DeployProcessor::publish in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 includes/DeployProcessor.inc \DeployProcessor::publish()

Processing method that should hand over the aggregator to the endpoint to publish all deployed entities. This method will only be called after successful deployments.

Parameters

integer $deployment_key: The unique deployment key for this deployment.

DeployEndpoint $endpoint: The endpoint object to hand over the aggregator to.

string $lock_name: Optional name of the lock that this deployment is working under.

1 method overrides DeployProcessor::publish()
DeployProcessorMemory::publish in plugins/DeployProcessorMemory.inc
Processing method that should hand over the aggregator to the endpoint to publish all deployed entities. This method will only be called after successful deployments.

File

includes/DeployProcessor.inc, line 57
Interface definition for deploy processors.

Class

DeployProcessor
The interface for deployment processors.

Code

public function publish($deployment_key, DeployEndpoint $endpoint, $lock_name = NULL);