function speedboxes_help in Speedboxes - Fast checkbox handling 8
Implements hook_help().
File
- ./
speedboxes.module, line 16
Code
function speedboxes_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the speedboxes module.
case 'help.page.speedboxes':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows for the checking and unchecking of multiple checkboxes with a drag and drop interface.') . '</p>';
return $output;
default:
}
}