You are here

public function DeployServiceRest::deploy in Deploy - Content Staging 7.2

Same name and namespace in other branches
  1. 7.3 includes/DeployServiceRest.inc \DeployServiceRest::deploy()

Deploy all entities in the $iterator. This method should only move entities over to the endpoint and create unpublished revisions (if supported). The 'publish' method is responsible for publishing all successfully deployed entities.

Parameters

Traverable $iterator: This will usually be an object of a subclass of DeployAggregatorBase

Overrides DeployService::deploy

See also

DeployService::publish()

1 method overrides DeployServiceRest::deploy()
DeployServiceRestJSON::deploy in plugins/DeployServiceRestJSON.inc
Deploy all entities in the $iterator. This method should only move entities over to the endpoint and create unpublished revisions (if supported). The 'publish' method is responsible for publishing all successfully deployed entities.

File

includes/DeployServiceRest.inc, line 44
Implementation of a REST based client for deploying entities.

Class

DeployServiceRest
Base class for REST-based service plugins.

Code

public function deploy(Traversable $iterator) {
}