You are here

function eb_custom_slider_slider_help in Featured Content Slider 7.2

Same name in this branch
  1. 7.2 contrib/eb_custom_slider.module \eb_custom_slider_slider_help()
  2. 7.2 contrib/custom_slider/eb_custom_slider.module \eb_custom_slider_slider_help()

implementation of hook_help().

File

contrib/custom_slider/eb_custom_slider.module, line 300
display content in 'featured content' block using jquery.

Code

function eb_custom_slider_slider_help($section) {
  switch ($section) {
    case 'admin/help#content_slider':
      $output = "the content_slider module: display content AND image in slide show mode using jquery.";
      return $output;
    case 'admin/modules#description':
      return 'the content_slider module: display content AND image in slide show mode using jquery.';
  }
}