You are here

function video_google_v_help in Video 6.2

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

Implementation of hook_v_help

File

types/video_google/video_google.module, line 28
Enable Google Video support for video module.

Code

function video_google_v_help() {
  $help = array();
  $help['google']['data'] = '<b><a href="http://video.google.com" name="video_google">' . t('Google Video support') . '</a></b>';
  $help['google']['children'] = array(
    t('You can host videos on video.google.com and put them on your site.
  To do this, after you upload the video on Google video you just have to get the URL of the video.'),
  );
  return $help;
}