function img_assist_header in Image Assist 5
Same name and namespace in other branches
- 5.3 img_assist.module \img_assist_header()
 - 5.2 img_assist.module \img_assist_header()
 - 6.2 img_assist.module \img_assist_header()
 - 6 img_assist.module \img_assist_header()
 
Related topics
1 string reference to 'img_assist_header'
- img_assist_menu in ./
img_assist.module  - Implementation of hook_menu().
 
File
- ./
img_assist.module, line 503  - Image Assist module
 
Code
function img_assist_header($mode) {
  // Mode may be 'uploading', 'properties' or 'browse'.
  $output = drupal_get_form('img_assist_header_form', $mode);
  echo theme('img_assist_page', $output, array(
    'id' => 'img_assist_header',
    'onload' => 'parent.initHeader();',
    'class' => 'img_assist',
  ));
}