class VersionController extends BaseController

Version controller

Properties

static boolean $batchMode Controller is in batch mode from BaseController
static array $batchedResponses Stack for batched responses from BaseController

Methods

int
getStatusCode()

Return status code

array
getHeaders()

Return current headers

string
getPayload()

Return payload

setStatusCode(int $code)

Set status code

setHeaders(string $key, string $value)

Set header value

setPayload(string $payload)

Set payload

static 
startBatchMode()

Static method to enable batch mode return handling

static 
endBatchMode()

Static method to disable batch mode return handling

Dispatcher
indexAction()

Forwards to list action

array
listAction()

Return versions by content SRN. the 'content' query string is required.

array
getAction(string $uuid)

Fetch a single version, will return associated parent.

array
restoreAction(string $uuid)

Restore a previous version. PUT request, will create another version not overwritting the existing

Details

in BaseController at line line 60
int getStatusCode()

Return status code

Return Value

int

in BaseController at line line 69
array getHeaders()

Return current headers

Return Value

array

in BaseController at line line 78
string getPayload()

Return payload

Return Value

string

in BaseController at line line 87
setStatusCode(int $code)

Set status code

Parameters

int $code HTTP status code

in BaseController at line line 97
setHeaders(string $key, string $value)

Set header value

Parameters

string $key Header name
string $value Header value

in BaseController at line line 106
setPayload(string $payload)

Set payload

Parameters

string $payload

in BaseController at line line 294
static startBatchMode()

Static method to enable batch mode return handling

in BaseController at line line 302
static endBatchMode()

Static method to disable batch mode return handling

at line line 22
Dispatcher indexAction()

Forwards to list action

Return Value

Dispatcher

at line line 32
array listAction()

Return versions by content SRN. the 'content' query string is required.

Return Value

array

See also

http://confluence.getsnworks.com/display/CEO/CEO+REST+API#CEORESTAPI-GET/version?content=[SRN]

at line line 94
array getAction(string $uuid)

Fetch a single version, will return associated parent.

Parameters

string $uuid

Return Value

array

See also

http://confluence.getsnworks.com/display/CEO/CEO+REST+API#CEORESTAPI-GET/version/[UUID]

at line line 125
array restoreAction(string $uuid)

Restore a previous version. PUT request, will create another version not overwritting the existing

Note that attempting to restore content with out a lock or a lock that doesn't belong to the current user will error.

Parameters

string $uuid Version UUID

Return Value

array

See also

http://confluence.getsnworks.com/display/CEO/CEO+REST+API#CEORESTAPI-PUT/version/[UUID]