You are here

function webform_submission_uuid_webform in Webform Submission UUID 7

Same name and namespace in other branches
  1. 6.4 webform_submission_uuid.module \webform_submission_uuid_webform()
  2. 7.4 webform_submission_uuid.module \webform_submission_uuid_webform()

Loads a webform provided the UUID of the submission.

File

./webform_submission_uuid.module, line 76

Code

function webform_submission_uuid_webform($uuid, $reset = FALSE) {
  $webform = null;

  // Get the submission entry.
  if ($submission = webform_submission_uuid_entry($uuid, $reset)) {

    // Translate this to a webform node.
    $webform = node_load($submission->nid, NULL, $reset);
  }

  // Return the webform node.
  return $webform;
}