You are here

function feedback_help in Feedback 3.x

Implements hook_help().

1 string reference to 'feedback_help'
FeedbackBlock::blockSubmit in src/Plugin/Block/FeedbackBlock.php

File

./feedback.module, line 13
Contains feedback.module..

Code

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

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