webform-submission.tpl.php 567 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Customize the display of a webform submission.
  5. *
  6. * Available variables:
  7. * - $node: The node object for this webform.
  8. * - $submission: The Webform submission array.
  9. * - $email: If sending this submission in an e-mail, the e-mail configuration
  10. * options.
  11. * - $format: The format of the submission being printed, either "html" or
  12. * "text".
  13. * - $renderable: The renderable submission array, used to print out individual
  14. * parts of the submission, just like a $form array.
  15. */
  16. ?>
  17. <?php print drupal_render_children($renderable); ?>