Using CakePHP 1.3, I post a form which correctly fills in $this->data
. According to the docs, it seems like $this->params['form']
should be populated with some information as well, but it's simply an empty array. Is there a particular reason for that?
The form is built using the Form Helper, as follows...
Some relevant code:
$default_form_create_options = array(
'inputDefaults' => array(
'label'=>false,
'div'=>false
)
);
echo $form->create('Preappform', $default_form_create_options);
// --- snip, a bunch of form elements created via $form->input()
echo $form->end(array('label'=>'Send This Form »', 'class'=>'submit-button', 'escape'=>false));
I know that the form data is available in $this->data
, so maybe this is just a documentation/curiosity issue. If so... my bad.