You are here

function _submission_resource_retrieve in Webform Service 7.3

Returns the results of a webform_get_submission() for the specified nid and sid.

Parameters

$nid: NID of the submitted node.

$sid: SID of the submission we want to return.

Return value

Submission object or FALSE if not found.

See also

webform_get_submission()

1 string reference to '_submission_resource_retrieve'
webform_service_services_resources in ./webform_service.module
Implements hook_services_resources().

File

./webform_service.inc, line 64

Code

function _submission_resource_retrieve($nid, $sid) {
  return webform_get_submission($nid, $sid);
}