You are here

function views_slideshow_singleframe_help in Views Slideshow 6.2

Implements hook_help().

File

contrib/views_slideshow_singleframe/views_slideshow_singleframe.module, line 80
Views Slideshow: SingleFrame is typically used for field views.

Code

function views_slideshow_singleframe_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_slideshow_singleframe':
      if (module_exists('advanced_help')) {
        $output = '<p>' . l(t('Click here to view the documentation for Views Slideshow SingleFrame.'), 'admin/advanced_help/views_slideshow_singleframe') . '</p>';
      }
      else {
        $output = '<p>' . t('Views Slideshow SingleFrame help can be found by installing and enabling the !advanced_help', array(
          '!advanced_help' => l('Advanced Help module', 'http://drupal.org/project/advanced_help'),
        )) . '</p>';
      }
      return $output;
  }
}