form_declaration_return
Hook Added in Version:
EE 1.4.2
Hook File Location:
core.functions.php
Hook Description:
Take control of the form_declaration function to create form tags the way you want.
Hook Parameters
- $data - The array of arguments sent to the function for creating the form tag
Hook Returns Data?
Yes
Appearance of Hook in the Code
if (isset($EXT->extensions['form_declaration_return']))
{
$form = $EXT->call_extension('form_declaration_return', $data);
if ($EXT->end_script === TRUE) return $form;
}
