You are here

function video_youtube_v_help in Video 6.2

Same name and namespace in other branches
  1. 5 types/video_youtube/video_youtube.module \video_youtube_v_help()
  2. 6 types/video_youtube/video_youtube.module \video_youtube_v_help()

Implementation of hook_v_help

File

types/video_youtube/video_youtube.module, line 97
Enable Youtube support for video module.

Code

function video_youtube_v_help() {
  $help = array();
  $help['youtube']['data'] = '<b><a href="http://www.youtube.com">' . t('YouTube.com support') . '</a></b>';
  $help['youtube']['children'] = array(
    t('You can host videos on youtube.com and put them on your site. To do this, after you upload the video on youtube.com enter the video URL.'),
  );
  return $help;
}