function jquery_carousel_help in jQuery carousel 7
Same name and namespace in other branches
- 8 jquery_carousel.module \jquery_carousel_help()
Implements hook_help().
File
- ./
jquery_carousel.module, line 13 - Provide jquery carousel style plugin for views.
Code
function jquery_carousel_help($path, $arg) {
$help_text = '';
switch ($path) {
case 'admin/help#jquery_carousel':
$help_text = '<p>' . t('jQuery carousel is based on the jquery plugin http://github.com/richardscarrott/jquery-ui-carousel. It allows developers to create carousels using the data entered through the content types.') . '</p>';
$help_text .= '<p>' . t('For more details, check the documentation on the project page(https://www.drupal.org/project/jquery_carousel)') . '</p>';
$help_text .= '<p>' . t('Demo available at http://jcarousel.qed42.webfactional.com');
break;
}
return $help_text;
}