paragraphs_views/paragraphs_views.module

24 lines
519 B
Text

<?php
/**
* @file
* Contains paragraphs_views.module..
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function paragraphs_views_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the paragraphs_views module.
case 'help.page.paragraphs_views':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Use views as paragraphs') . '</p>';
return $output;
default:
}
}