You are here

function paragraph_blocks_help in Paragraph blocks 8

Same name and namespace in other branches
  1. 8.2 paragraph_blocks.module \paragraph_blocks_help()
  2. 3.x paragraph_blocks.module \paragraph_blocks_help()

Implements hook_help().

File

./paragraph_blocks.module, line 19
Contains paragraph_blocks.module.

Code

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

    // Main module help for the paragraph_blocks module.
    case 'help.page.paragraph_blocks':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Panels paragraphs') . '</p>';
      return $output;
    default:
  }
}