You are here

function views_timelinejs_help in Views TimelineJS integration 8.3

Same name and namespace in other branches
  1. 7.3 views_timelinejs.module \views_timelinejs_help()

Implements hook_help().

File

./views_timelinejs.module, line 230
Views TimelineJS API, theming, libraries, etc.

Code

function views_timelinejs_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Help for the settings form.
    case 'views_timelinejs.admin':
      return '<p>' . t('Configure how the Views TimelineJS plugin behaves on the site. Select whether to use a CDN or serve the library locally.') . '</p>';
  }
}