You are here

function video_params_help in Video 5

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

Implementation of hook_help().

File

plugins/video_params/video_params.module, line 15
Enable addition of params to object generated by video module

Code

function video_params_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Enable addition of html params to object generated by video module. Useful if you need to use swf videos which needs params to be passed.');
  }
}