function ckeditor_lineheight_help in CKEditor Line Height 8
Implements hook_help().
Parameters
$route_name:
\Drupal\Core\Routing\RouteMatchInterface $route_match:
Return value
string
File
- ./
ckeditor_lineheight.module, line 13
Code
function ckeditor_lineheight_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the ckeditor_lineheight module.
case 'help.page.ckeditor_lineheight':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Adds the functionality to set the line-height property of an element similar to the font-size.') . '</p>';
return $output;
default:
}
}