You are here

function content_synchronizer_help in Content Synchronizer 8.2

Same name and namespace in other branches
  1. 3.x content_synchronizer.module \content_synchronizer_help()

Implements hook_help().

File

./content_synchronizer.module, line 18
Hooks definitions for content_synchronizer module.

Code

function content_synchronizer_help($route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the dillon module.
    case 'help.page.test_module':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Please check the module information page : <a href="//@dest">@dest</a>', [
        '@dest' => 'www.drupal.org/projects/content_synchronizer',
      ]) . '</p>';
      return $output;
    default:
  }
}