You are here

function cmis_help in CMIS API 8

Same name and namespace in other branches
  1. 8.2 cmis.module \cmis_help()
  2. 3.0.x cmis.module \cmis_help()

Implements hook_help().

File

./cmis.module, line 12
Contains cmis.module.

Code

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

    // Main module help for the cmis module.
    case 'help.page.cmis':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('CMIS implementation for interacting with a CMIS compliant repository') . '</p>';
      return $output;
    default:
  }
}