function paragraphs_library_help in Paragraphs 8
Implements hook_help().
File
- modules/
paragraphs_library/ paragraphs_library.module, line 297 - Main module file for the Paragraphs Library module.
Code
function paragraphs_library_help($route_name, RouteMatchInterface $route_match) {
if ($route_name === 'entity.paragraphs_library_item.version_history') {
return '<p>' . t('Revisions allow you to track differences between multiple versions of your content, and revert to older versions.') . '</p>';
}
}