You are here

function slick_example_help in Slick extras 7.3

Same name and namespace in other branches
  1. 8 slick_example/slick_example.module \slick_example_help()

Implements hook_help().

File

slick_example/slick_example.module, line 217
Provides Slick carousel examples.

Code

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