You are here

function ckeditor_bs_grid_help in CKEditor Bootstrap Grid 8

Same name and namespace in other branches
  1. 8.2 ckeditor_bs_grid.module \ckeditor_bs_grid_help()
  2. 2.0.x ckeditor_bs_grid.module \ckeditor_bs_grid_help()

Implements hook_help().

File

./ckeditor_bs_grid.module, line 13
Contains ckeditor_bs_grid.module..

Code

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

    // Main module help for the ckeditor_bs_grid module.
    case 'help.page.ckeditor_bs_grid':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Ckeditor plugin for Bootstrap Grid') . '</p>';
      return $output;
    default:
  }
}