| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: webform-submission-information.tpl.php,v 1.1 2010/01/14 06:12:47 quicksketch Exp $ 3 4 /** 5 * @file 6 * Customize the header information shown when editing or viewing submissions. 7 * 8 * Available variables: 9 * - $node: The node object for this webform. 10 * - $submission: The contents of the webform submission. 11 * - $account: The user that submitted the form. 12 */ 13 ?> 14 <fieldset> 15 <legend><?php print t('Submission information'); ?></legend> 16 <?php print theme('user_picture', $account); ?> 17 <div><?php print t('Form: !form', array('!form' => l($node->title, 'node/' . $node->nid))); ?></div> 18 <div><?php print t('Submitted by !name', array('!name' => theme('username', $account))); ?></div> 19 <div><?php print format_date($submission->submitted, 'large'); ?></div> 20 <div><?php print $submission->remote_addr; ?></div> 21 </fieldset>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |