You are here

function video_optmetadata_help in Video 5

Same name and namespace in other branches
  1. 6 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 14
Enable addition of optional metadata on video nodes created by video module.

Code

function video_optmetadata_help($section) {
  switch ($section) {
    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.');
  }
}