function img_assist_insert_html in Image Assist 5
Same name and namespace in other branches
- 5.3 img_assist.module \img_assist_insert_html()
 - 5.2 img_assist.module \img_assist_insert_html()
 - 6.2 img_assist.module \img_assist_insert_html()
 - 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 1045  - 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',
  ));
}