function video_help in Video 6.2
Same name and namespace in other branches
- 5 video.module \video_help()
- 6 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 57 - 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;
}
}