function background_video_help in Background Video 7
Same name and namespace in other branches
- 8 background_video.module \background_video_help()
Implements hook_help().
File
- ./
background_video.module, line 10 - This file provides basic functionality.
Code
function background_video_help($path, $arg) {
switch ($path) {
case 'admin/help#background_video':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This Background Video module allows to play video in the background of the page. To play video background in the background what you have to do is just specify the name of the class to which you want to add the background video. There are some other specification like Loop the video, where to place the controls like play/pause and mute/unmute etc.') . '</p>';
return $output;
}
}