You are here

function flat_comments_help in Flatcomments 8

Implements hook_help().

File

./flat_comments.module, line 15
Contains flat_comments.module.

Code

function flat_comments_help($route_name, RouteMatchInterface $route_match) {
  $output = '';
  switch ($route_name) {

    // Main module help for the flat_comments module.
    case 'help.page.flat_comments':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Make all comments replies to the main post, regardless of the reply link used.') . '</p>';
      $output;
    default:
  }
  return $output;
}