form_declaration_modify_data
Hook Added in Version:
EE 1.4.2
Hook File Location:
core.functions.php
Hook Description:
Modify the $data parameters before they are processed by the user side form creator.
Hook Parameters
- $data - The array of arguments sent to the form_declaration() method
Hook Returns Data?
Yes
Appearance of Hook in the Code
if (isset($EXT->extensions['form_declaration_modify_data']))
{
$data = $EXT->call_extension('form_declaration_modify_data', $data);
}
