You are here

function paragraphs_class_help in Paragraphs Class 8

Implements hook_help().

File

./paragraphs_class.module, line 13
Contains paragraphs_class.module.

Code

function paragraphs_class_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the paragraphs_class module.
    case 'help.page.paragraphs_class':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add to Drupal 8 Paragraphs Experimental Widget Class throw Behaviors') . '</p>';
      return $output;
    default:
  }
}