You are here

function votingapi_widgets_help in Votingapi Widgets 8

Implements hook_help().

File

./votingapi_widgets.module, line 18
Contains votingapi_widgets.module..

Code

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

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