You are here

function img_assist_insert_html_form in Image Assist 5.3

Same name and namespace in other branches
  1. 5 img_assist.module \img_assist_insert_html_form()
  2. 5.2 img_assist.module \img_assist_insert_html_form()
  3. 6.2 img_assist.module \img_assist_insert_html_form()
  4. 6 img_assist.module \img_assist_insert_html_form()

Related topics

1 string reference to 'img_assist_insert_html_form'
img_assist_insert_html in ./img_assist.module

File

./img_assist.module, line 1161
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;
}