You are here

function video_optmetadata_help in Video 6

Same name and namespace in other branches
  1. 5 plugins/video_optmetadata/video_optmetadata.module \video_optmetadata_help()
  2. 6.2 plugins/video_optmetadata/video_optmetadata.module \video_optmetadata_help()

Implementation of hook_help().

File

plugins/video_optmetadata/video_optmetadata.module, line 16
Enable addition of optional metadata on video nodes created by video module.

Code

function video_optmetadata_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      return t('Enable addition of optional metadata on video nodes created by video module. Optional metadata are Video Bitrate, Audio Bitrate, Audio Sampling Rate and Audio Channels.');
  }
}