| Versionen | |
|---|---|
| drupal7 | form_state_defaults() |
Retrieve default values for the $form_state array.
includes/
<?php
function form_state_defaults() {
return array(
'storage' => NULL,
'submitted' => FALSE,
'method' => 'post',
'programmed' => FALSE,
'groups' => array(),
);
}
?>
Kommentare
Kommentar hinzufügen