You are here

function video_ffmpeg_helper_help in Video 5

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

Implementation of hook_help().

File

plugins/video_ffmpeg_helper/video_ffmpeg_helper.module, line 41
Provide some api for use ffmpeg. Simplify video nodes creation.

Code

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