form_state_defaults
- Versions
- 7
form_state_defaults()
Retrieve default values for the $form_state array.
Related topics
Code
includes/form.inc, line 269
<?php
function form_state_defaults() {
return array(
'args' => array(),
'rebuild' => FALSE,
'redirect' => NULL,
'build_info' => array(),
'storage' => array(),
'submitted' => FALSE,
'programmed' => FALSE,
'cache'=> FALSE,
'method' => 'post',
'groups' => array(),
);
}
?>Login or register to post comments 