You are here

function drupal_slider_help in Drupal Slider 8.2

Same name and namespace in other branches
  1. 8 drupal_slider.module \drupal_slider_help()

Implements hook_help().

File

./drupal_slider.module, line 11
Provides Drupal slider integration with Views.

Code

function drupal_slider_help($route_name) {
  if ($route_name == 'help.page.drupal_slider') {
    $output = file_get_contents(dirname(__FILE__) . '/README.md');
    return $output;
  }
  return '';
}