You are here

function quick_node_block_help in Quick Node Block 8

Implements hook_help().

File

./quick_node_block.module, line 15
Module file for quick_node_block.

Code

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

    // Main module help for the Go Back module.
    case 'help.page.quick_node_block':
      $output = '';
      $output .= '<h3>' . t('About Quick Node Block') . '</h3>';
      $output .= '<p>' . t('The Quick Node Block module display a content in a block with the specified display mode.') . '</p>';
      return $output;
    default:
  }
}