You are here

function video_ffmpeg_helper_help in Video 6.2

Same name and namespace in other branches
  1. 5 plugins/video_ffmpeg_helper/video_ffmpeg_helper.module \video_ffmpeg_helper_help()
  2. 6 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 42
Provide some api for use ffmpeg. Simplify video nodes creation.

Code

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