You are here

function slick_views_help in Slick Views 7.3

Same name and namespace in other branches
  1. 8.2 slick_views.module \slick_views_help()
  2. 8 slick_views.module \slick_views_help()

Implements hook_help().

File

./slick_views.module, line 39
Provides Views plugins for Slick carousel.

Code

function slick_views_help($path, $arg) {
  if ($path == 'admin/help#slick_views') {
    $output = file_get_contents(dirname(__FILE__) . '/README.md');
    return function_exists('_filter_markdown') ? _filter_markdown($output, NULL) : '<pre>' . $output . '</pre>';
  }
  return '';
}