ckeditor_bs_grid.module in CKEditor Bootstrap Grid 8
Same filename and directory in other branches
Contains ckeditor_bs_grid.module..
File
ckeditor_bs_grid.moduleView 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
Name | Description |
---|---|
ckeditor_bs_grid_help | Implements hook_help(). |