opigno_tincan_live_meeting.module in Opigno TinCan API 8
Same filename and directory in other branches
Contains opigno_tincan_live_meeting.module.
File
modules/opigno_tincan_live_meeting/opigno_tincan_live_meeting.moduleView source
<?php
/**
* @file
* Contains opigno_tincan_live_meeting.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function opigno_tincan_live_meeting_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the opigno_tincan_live_meeting module.
case 'help.page.opigno_tincan_live_meeting':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Functionality for send tincan statements for Live meething (provided by opigno_moxtra module).') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
opigno_tincan_live_meeting_help | Implements hook_help(). |