function img_assist_insert_html_form in Image Assist 6.2
Same name and namespace in other branches
- 5.3 img_assist.module \img_assist_insert_html_form()
- 5 img_assist.module \img_assist_insert_html_form()
- 5.2 img_assist.module \img_assist_insert_html_form()
- 6 img_assist.module \img_assist_insert_html_form()
Related topics
1 string reference to 'img_assist_insert_html_form'
File
- ./
img_assist.module, line 1194 - Image Assist module
Code
function img_assist_insert_html_form() {
$htmlcode = img_assist_set_htmlcode();
$form[] = array(
'#id' => 'finalhtmlcode',
'#type' => 'hidden',
'#value' => $htmlcode,
);
$form['insertmode'] = array(
'#type' => 'hidden',
'#value' => 'html2',
);
return $form;
}