function media_bulk_upload_help in Media Bulk Upload 8
Implements hook_help().
File
- ./
media_bulk_upload.module, line 15 - Contains media_upload.module.
Code
function media_bulk_upload_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the media_upload module.
case 'help.page.media_bulk_upload':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows uploading files in bulk and converting them to media entities.') . '</p>';
return $output;
default:
}
}