You are here

function bxslider_help in BxSlider 8

Implements hook_help().

File

./bxslider.module, line 13
BxSlider integration.

Code

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

    // Main module help for the bxslider module.
    case 'help.page.bxslider':
      $output = '';
      $output .= '<h3>' . t('About BxSlider') . '</h3>';
      $output .= '<p>' . t('Integration BxSlider with Field Formatter.') . '</p>';
      return $output;
    default:
  }
}