You are here

function img_assist_header in Image Assist 5.3

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

Related topics

2 string references to 'img_assist_header'
img_assist_menu in ./img_assist.module
Implementation of hook_menu().
theme_img_assist_page in ./img_assist.module

File

./img_assist.module, line 584
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',
  ));
  exit;
}