function views_slideshow_slider_help in Views Slideshow Slider 7.3
Same name and namespace in other branches
- 6.3 views_slideshow_slider.module \views_slideshow_slider_help()
- 6.2 views_slideshow_slider.module \views_slideshow_slider_help()
Implements hook_help().
File
- ./
views_slideshow_slider.module, line 62 - Views Slideshow Slider adds a new widget to control the slides: the jQuery UI slider.
Code
function views_slideshow_slider_help($path, $arg) {
switch ($path) {
case 'admin/help#views_slideshow_slider':
if (module_exists('advanced_help')) {
$output = '<p>' . l(t('Click here to view the documentation for Views Slideshow slider'), 'admin/advanced_help/views_slideshow_slider') . '</p>';
}
else {
$output = '<p>' . t('Views Slideshow slider help can be found by installing and enabling the !advanced_help.', array(
'!advanced_help' => l(t('Advanced Help module'), 'http://drupal.org/project/advanced_help'),
)) . '</p>';
}
return $output;
}
}