social_auth_steemconnect-8.x-2.x-dev/social_auth_steemconnect.module
social_auth_steemconnect.module
<?php
/**
* @file
* Hook implementations for Social Auth Steemconnect module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function social_auth_steemconnect_help($route_name, RouteMatchInterface $route_match) {
$output = '';
switch ($route_name) {
case 'social_auth_steemconnect.settings_form':
$output = '<h3>' . t('Configuration instructions') . '</h3>';
$output .= '<p>';
$output .= t('Configuration instructions and other useful documentation can be found from <a href="@handbook-url">Social Auth Steemconnect Handbook</a>.', ['@handbook-url' => 'https://www.drupal.org/node/2764227']);
$output .= '</p>';
break;
}
return $output;
}
