You are here

function ckeditor_bootstrap_buttons_help in CKEditor Bootstrap Buttons 8

Same name and namespace in other branches
  1. 2.0.x ckeditor_bootstrap_buttons.module \ckeditor_bootstrap_buttons_help()

Implements hook_help().

File

./ckeditor_bootstrap_buttons.module, line 13
Contains ckeditor_bootstrap_buttons.module.

Code

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

    // Main module help for the ckeditor_entity_link module.
    case 'help.page.ckeditor_bootstrap_buttons':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows to insert bootstrap buttons in CKEditor.') . '</p>';
      return $output;
    default:
  }
}