Mercurial > hg > rr-repo
annotate sites/all/modules/webform/templates/webform-results-submissions.tpl.php @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | ff03f76ab3fe |
children |
rev | line source |
---|---|
danielebarchiesi@0 | 1 <?php |
danielebarchiesi@0 | 2 // $Id: |
danielebarchiesi@0 | 3 |
danielebarchiesi@0 | 4 /** |
danielebarchiesi@0 | 5 * @file |
danielebarchiesi@0 | 6 * Result submissions page. |
danielebarchiesi@0 | 7 * |
danielebarchiesi@0 | 8 * Available variables: |
danielebarchiesi@0 | 9 * - $node: The node object for this webform. |
danielebarchiesi@0 | 10 * - $submissions: The Webform submissions array. |
danielebarchiesi@0 | 11 * - $total_count: The total number of submissions to this webform. |
danielebarchiesi@0 | 12 * - $pager_count: The number of results to be shown per page. |
danielebarchiesi@0 | 13 * - is_submissions: The user is viewing the node/NID/submissions page. |
danielebarchiesi@0 | 14 * - $table: The table[] array consists of three keys: |
danielebarchiesi@0 | 15 * - $table['#header']: Table header. |
danielebarchiesi@0 | 16 * - $table['#rows']: Table rows. |
danielebarchiesi@0 | 17 * - $table['#operation_total']: Maximum number of operations in the operation column. |
danielebarchiesi@0 | 18 */ |
danielebarchiesi@0 | 19 ?> |
danielebarchiesi@0 | 20 |
danielebarchiesi@0 | 21 <?php if (count($table['#rows'])): ?> |
danielebarchiesi@0 | 22 <?php print theme('webform_results_per_page', array('total_count' => $total_count, 'pager_count' => $pager_count)); ?> |
danielebarchiesi@0 | 23 <?php print render($table); ?> |
danielebarchiesi@0 | 24 <?php else: ?> |
danielebarchiesi@0 | 25 <?php print t('There are no submissions for this form. <a href="!url">View this form</a>.', array('!url' => url('node/' . $node->nid))); ?> |
danielebarchiesi@0 | 26 <?php endif; ?> |
danielebarchiesi@0 | 27 |
danielebarchiesi@0 | 28 |
danielebarchiesi@0 | 29 <?php if ($is_submissions): ?> |
danielebarchiesi@0 | 30 <?php print theme('links', array('links' => array('webform' => array('title' => t('Go back to the form'), 'href' => 'node/' . $node->nid)))); ?> |
danielebarchiesi@0 | 31 <?php endif; ?> |
danielebarchiesi@0 | 32 |
danielebarchiesi@0 | 33 <?php if ($pager_count): ?> |
danielebarchiesi@0 | 34 <?php print theme('pager', array('limit' => $pager_count)); ?> |
danielebarchiesi@0 | 35 <?php endif; ?> |