You are here

function imagepicker_postlet_help in Image Picker 6.2

Implementation of hook_help().

File

contribs/imagepicker_postlet/imagepicker_postlet.module, line 13
Enables upload of images using Postlet java applet. http://www.postlet.com/ http://sourceforge.net/projects/postlet/

Code

function imagepicker_postlet_help($path, $arg) {
  switch ($path) {
    case 'admin/help#imagepicker':
      $output = '<p>' . t('Adds an advanced image upload form using java.') . '</p>';
      return $output;
  }
}