function svg_formatter_help in SVG Formatter 8
Implements hook_help().
File
- ./
svg_formatter.module, line 13 - Main hooks for SVG Formatter module.
Code
function svg_formatter_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the svg_formatter module.
case 'help.page.svg_formatter':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('SVG Formatter provides support for using SVG images on your website.') . '</p>';
return $output;
default:
}
}