function add_to_head_forms in Add To Head 6
Same name and namespace in other branches
- 7 add_to_head.module \add_to_head_forms()
Implementation of hook_forms().
File
- ./
add_to_head.module, line 57 - Add To Head allows abritrary insertion of code into the head of the page based on path selection.
Code
function add_to_head_forms($form_id, $arg) {
return array(
'add_to_head_add_profile' => array(
'callback' => 'add_to_head_edit_profile',
),
);
}