You are here

function img_assist_insert_html in Image Assist 5.3

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

Related topics

1 string reference to 'img_assist_insert_html'
img_assist_menu in ./img_assist.module
Implementation of hook_menu().

File

./img_assist.module, line 1156
Image Assist module

Code

function img_assist_insert_html() {
  $output = drupal_get_form('img_assist_insert_html_form');
  echo theme('img_assist_page', $output, array(
    'id' => 'img_assist_insert_html',
    'onload' => 'parent.insertImage();',
    'class' => 'img_assist',
  ));
}