You are here

function video_image_help in Video 6.2

Same name and namespace in other branches
  1. 5 plugins/video_image/video_image.module \video_image_help()
  2. 6 plugins/video_image/video_image.module \video_image_help()

Implementation of hook_help().

File

plugins/video_image/video_image.module, line 21
Enable image support for video module.

Code

function video_image_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      return t('Enable thumbnail support for video module.');
  }
}