You are here

function slick_views_help in Slick Views 8

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

Implements hook_help().

File

./slick_views.module, line 13
Provides Slick carousel integration with Views.

Code

function slick_views_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.slick_views':
      return check_markup(file_get_contents(dirname(__FILE__) . '/README.txt'));
  }
}