You are here

function lti_tool_provider_help in LTI Tool Provider 8

Same name and namespace in other branches
  1. 7 lti_tool_provider.module \lti_tool_provider_help()
  2. 2.x lti_tool_provider.module \lti_tool_provider_help()

Implements hook_help().

Parameters

$route_name:

Return value

string|null

File

./lti_tool_provider.module, line 23
LTI Tool Provider hook implementations and support functions.

Code

function lti_tool_provider_help($route_name) : ?string {
  switch ($route_name) {
    case 'help.page.lti_tool_provider':
      return '<p>' . t('The LTI tool provider module provides an oauth based authentication provider for Drupal, as well as configuration options for consumers and user provisioning.') . '</p>';
  }
  return null;
}