You are here

function parallax_bg_help in Parallax Background 8

Implements hook_help().

File

./parallax_bg.module, line 13
Contains parallax_bg.module.

Code

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

    // Main module help for the parallax_bg module.
    case 'help.page.parallax_bg':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Create a Parallax Background effect on any tagged element.') . '</p>';
      return $output;
    default:
  }
}