You are here

function bootstrap_layout_builder_help in Bootstrap Layout Builder 1.x

Same name and namespace in other branches
  1. 2.x bootstrap_layout_builder.module \bootstrap_layout_builder_help()

Implements hook_help().

File

./bootstrap_layout_builder.module, line 15
Bootstrap Layout Builder module.

Code

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

    // Main module help for the bootstrap_layout_builder module.
    case 'help.page.bootstrap_layout_builder':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add Bootstrap Grid support to Layout Builder module.
      currently, work for both Bootstrap 3 and Bootstrap 4.') . '</p>';
      return $output;
    default:
  }
}