You are here

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

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

Publish all entities in the $iterator. This method should only publish entities on the endpoint (if supported). The 'deploy' method is responsible for moving the entities to the endpoint, prior to the publishing.

Parameters

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

Overrides DeployService::publish

See also

DeployService::deploy()

1 method overrides DeployServiceRest::publish()
DeployServiceRestJSON::publish in plugins/DeployServiceRestJSON.inc
Publish all entities in the $iterator. This method should only publish entities on the endpoint (if supported). The 'deploy' method is responsible for moving the entities to the endpoint, prior to the publishing.

File

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

Class

DeployServiceRest
Base class for REST-based service plugins.

Code

public function publish(Traversable $iterator) {
}