You are here

function ckeditor_div_help in CKEditor Div Container Manager 8

Implements hook_help().

File

./ckeditor_div.module, line 13
Contains ckeditor_div.module.

Code

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

    // Main module help for the ckeditor_div module.
    case 'help.page.ckeditor_div':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module enables the Div Container Manager plugin for CKEditor.') . '</p>';
      return $output;
    default:
  }
}