function paragraphs_table_help in Paragraphs table 8
Implements hook_help().
File
- ./
paragraphs_table.module, line 17 - Contains paragraphs_table.module.
Code
function paragraphs_table_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the paragraphs_table module.
case 'help.page.paragraphs_table':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module provides both a field formatter and a widget for the Paragraphs entity type') . '</p>';
return $output;
default:
}
}