You are here

function flipping_book_help in Flipping Book 8

Implements hook_help().

File

./flipping_book.module, line 16
Contains flipping_book.module..

Code

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

    // Main module help for the flipping_book module.
    case 'help.page.flipping_book':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides integration with FlippingBook packages.') . '</p>';
      return $output;
    default:
  }
}