You are here

function imagepicker_help in Image Picker 5

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

Implementation of hook_help().

File

./imagepicker.module, line 20
Enables permitted roles to upload images for insertion into configured nodes.

Code

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