function paragraphs_browser_help in Paragraphs Browser 8
Implements hook_help().
File
- ./
paragraphs_browser.module, line 16 - Contains paragraphs_browser.module..
Code
function paragraphs_browser_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the paragraphs_browser module.
case 'help.page.paragraphs_browser':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides browser for adding additional paragraphs.') . '</p>';
return $output;
default:
}
}