function paragraph_view_mode_help in Paragraph View Mode 8
Same name and namespace in other branches
- 2.x paragraph_view_mode.module \paragraph_view_mode_help()
Implements hook_help().
File
- ./
paragraph_view_mode.module, line 18 - Contains paragraphs_view_mode.module functions.
Code
function paragraph_view_mode_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.paragraph_view_mode':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module allows to dynamically pick the display mode of the paragraph during adding/editing the paragraph item, by creating a field with available view modes.') . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Enable view mode field on paragraph type') . '</dt>';
$output .= '<dd>' . t('Go to edit page of your paragraph type and check option "Enable paragraph view mode field on this paragraph type.". Save.') . '</dd>';
$output .= '<dt>' . t('Add field to add/edit form') . '</dt>';
$output .= '<dd>' . t('Go to the "Manage form display" tab and place your field anywhere you want (except the disabled section).') . '</dd>';
$output .= '<dt>' . t('Widget settings') . '</dt>';
$output .= '<dd>' . t('You can configure the field widget, by selecting which view modes you want to allow to view during adding/editing the content. If you do not select any view mode, the "default" will be displayed.') . '</dd>';
$output .= '</dl>';
return $output;
}
}