You are here

function video_url_v_help in Video 5

Same name and namespace in other branches
  1. 6 types/video_url/video_url.module \video_url_v_help()
  2. 6.2 types/video_url/video_url.module \video_url_v_help()

Implementation of hook_v_help

File

types/video_url/video_url.module, line 32
Enable Path or URL support for video module.

Code

function video_url_v_help() {
  $help = array();
  $help['url']['data'] = '<b>' . t('Url support') . '</b>';
  $help['url']['children'] = array(
    t('You can link to any video file on the Internet.'),
  );
  return $help;
}