You are here

function ckeditor_images_gallery_help in CKEditor Images Gallery 8

Implements hook_help().

File

./ckeditor_images_gallery.module, line 13
Contains ckeditor_images_gallery.module.

Code

function ckeditor_images_gallery_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.ckeditor_images_gallery':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module provide a dialog to add images gallery into CKEditor field.') . '</p>';
      return $output;
    default:
  }
}