social_lms_integrator-1.0.0-beta4/social_lms_integrator.module
social_lms_integrator.module
<?php
/**
* @file
* Contains social_lms_integrator.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\node\NodeInterface;
/**
* Implements hook_help().
*/
function social_lms_integrator_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the social_lms_integrator module.
case 'help.page.social_lms_integrator':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Moodle Integration for Open Social') . '</p>';
return $output;
default:
}
}
