function bxslider_views_slideshow_help in BxSlider - Views slideshow integration 7
Implements hook_help().
File
- ./
bxslider_views_slideshow.module, line 64 - Integrating BxSlider with Views Slideshow.
Code
function bxslider_views_slideshow_help($path, $arg) {
switch ($path) {
case 'admin/help#bxslider_views_slideshow':
$output = '<p>' . t('Please read the README.txt file or create an issue on drupal.org.') . '</p>';
return $output;
}
}