You are here

function acquia_contenthub_help in Acquia Content Hub 8.2

Same name and namespace in other branches
  1. 8 acquia_contenthub.module \acquia_contenthub_help()

Implements hook_help().

File

./acquia_contenthub.module, line 26
Drupal Module: Acquia Content Hub.

Code

function acquia_contenthub_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.acquia_contenthub':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Some info about Acquia Content Hub') . '</p>';
      return $output;
  }
}