You are here

function bootstrap_layouts_help in Bootstrap Layouts 8.3

Same name and namespace in other branches
  1. 8 bootstrap_layouts.module \bootstrap_layouts_help()

Implements hook_help().

File

./bootstrap_layouts.module, line 13
Contains bootstrap_layouts.module..

Code

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

    // Main module help for the bootstrap_layouts module.
    case 'help.page.bootstrap_layouts':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module is going to generate layouts with Bootstrap grid system.') . '</p>';
      return $output;
    default:
  }
}