You are here

ckeditor_bs_grid.module in CKEditor Bootstrap Grid 8

Same filename and directory in other branches
  1. 8.2 ckeditor_bs_grid.module
  2. 2.0.x ckeditor_bs_grid.module

File

ckeditor_bs_grid.module
View source
<?php

/**
 * @file
 * Contains ckeditor_bs_grid.module..
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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:
  }
}

Functions

Namesort descending Description
ckeditor_bs_grid_help Implements hook_help().