You are here

function imagepicker_help in Image Picker 7

Same name and namespace in other branches
  1. 5.2 imagepicker.module \imagepicker_help()
  2. 5 imagepicker.module \imagepicker_help()
  3. 6.2 imagepicker.module \imagepicker_help()

Implement hook_help().

File

./imagepicker.module, line 28
@author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function imagepicker_help($path, $arg) {
  switch ($path) {
    case 'admin/help#imagepicker':
      $output = '<p>' . t('Adds an advanced image upload form under the node body part.') . '</p>';
      return $output;
  }
}