You are here

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

Same name and namespace in other branches
  1. 7.2 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()

2 methods override DeployServiceRest::deploy()
DeployRemoteCcServiceRestJSON::deploy in modules/deploy_remote_cc/plugins/DeployRemoteCcServiceRestJSON.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.
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 45
Implementation of a REST based client for deploying entities.

Class

DeployServiceRest
Base class for REST-based service plugins.

Code

public function deploy(Traversable $iterator) {
}