You are here

function video_help in Video 6

Same name and namespace in other branches
  1. 5 video.module \video_help()
  2. 6.2 video.module \video_help()

Help hook Implementation of hook_help

Parameters

$section: string of the area of Drupal where help was requested

Return value

string of help information

File

./video.module, line 30
video.module

Code

function video_help($path, $arg) {
  switch ($path) {
    case 'admin/help#video':
      $output = '<p>' . t('The Video Module is used to create and administrator Video nodes for Drupal') . '</p>';
      return $output;
  }
}