You are here

function img_assist_header in Image Assist 5

Same name and namespace in other branches
  1. 5.3 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

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',
  ));
}