function dropzonejs_help in DropzoneJS 8
Same name and namespace in other branches
- 8.2 dropzonejs.module \dropzonejs_help()
Implements hook_help().
File
- ./
dropzonejs.module, line 13 - Contains dropzonejs.module.
Code
function dropzonejs_help($route_name, RouteMatchInterface $route_match) {
$output = '';
switch ($route_name) {
// Main module help for the dropzonejs module.
case 'help.page.dropzonejs':
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('DropzoneJS') . '</p>';
default:
}
return $output;
}