You are here

function video_image_help in Video 5

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

Implementation of hook_help().

File

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

Code

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