You are here

function comments_order_help in Comments Order 8

Implements hook_help().

File

./comments_order.module, line 16
Contains comments_order.module.

Code

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

    // Main module help for the comments_order module.
    case 'help.page.comments_order':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module allows to set order for node comments') . '</p>';
      return $output;
  }
}