function paragraphs_viewmode_help in Paragraphs View Modes 8
Implements hook_help().
File
- ./
paragraphs_viewmode.module, line 16 - Contains paragraph_viewmode.module.
Code
function paragraphs_viewmode_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the paragraph_viewmode module.
case 'help.page.paragraph_viewmode':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows you to select the paragraph view mode on a per paragraph basis') . '</p>';
return $output;
default:
}
}