function nice_imagefield_widget_help in Nice ImageField Widget 8
Implements hook_help().
File
- ./
nice_imagefield_widget.module, line 13 - Contains nice_imagefield_widget.module..
Code
function nice_imagefield_widget_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the nice_imagefield_widget module.
case 'help.page.nice_imagefield_widget':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Creates a widget for imagefield to upload multiple files at once using html5 and display multiple images as draggable grid') . '</p>';
return $output;
default:
}
}