You are here

function views_timelinejs_help in Views TimelineJS integration 7.3

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

Implements hook_help().

File

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

Code

function views_timelinejs_help($path, $arg) {
  switch ($path) {

    // Help for the settings form.
    case 'admin/config/development/views_timelinejs':
      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>';
  }
}