$batchMode
$batchMode : boolean
Controller is in batch mode
Lock request controller handles creating and releasing locks.
Locks are objects in-and-of themselves. So instead of locking a content item, you create a lock for a content item. Thus, literally anything that generates an SRN can be locked.
deleteAction(string $uuid) : array
Delete lock for given UUID. Request must be made from locking user.
A lock back be overriden by an Administrator under by sending a JSON object with the DELETE request with the requesting user's UUID under the 'force_override' key
DELETE /v3/lock-request/516e3165-ff12-48eb-aedb-d16dcd4a7476 HTTP/1.1 authorization: Basic ... content-type: application/json {"force_override":"XXXX-XXX-XXX-XXX-XXXXX"}
string | $uuid | UUID |
render(string $st_output, integer $statusCode = 200) : \Ceo\Core\Controllers\Phalcon\Http\Response
Render output, resets headers and status code.
If batch mode is enabled, will return an array with status code and response.
string | $st_output | Output string |
integer | $statusCode | HTTP status code |