function media_library_edit_help in Media Library Edit 8
Same name and namespace in other branches
- 8.2 media_library_edit.module \media_library_edit_help()
Implements hook_help().
File
- ./
media_library_edit.module, line 18 - Contains media_library_edit.module.
Code
function media_library_edit_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the media_library_edit module.
case 'help.page.media_library_edit':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Add an edit button to the Media Library widget when an item is selected.') . '</p>';
return $output;
default:
}
}