| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
// $Id: multipage_form_example.module,v 1.7 2006/04/02 19:23:47 thehunmonkgroup Exp $ |
// $Id: multipage_form_example.module,v 1.8 2006/04/08 03:35:39 drumm Exp $ |
| 4 |
|
|
| 5 |
/** |
/** |
| 6 |
* Implementation of hook_help(). |
* Implementation of hook_help(). |
| 455 |
* element |
* element |
| 456 |
*/ |
*/ |
| 457 |
function multipage_form_example_elements() { |
function multipage_form_example_elements() { |
| 458 |
$type['hidden_array'] = array('#input' => TRUE, '#process' => array('expand_hidden_array' => array()), '#tree' => TRUE); |
$type['hidden_array'] = array('#input' => TRUE, '#process' => array('expand_hidden_array' => array()), '#tree' => TRUE); |
| 459 |
return $type; |
return $type; |
| 460 |
} |
} |
| 461 |
|
|
| 462 |
function expand_hidden_array($element) { |
function expand_hidden_array($element) { |