jplayer.module in jPlayer 8.2
Same filename and directory in other branches
Contains jplayer.module..
File
jplayer.moduleView source
<?php
/**
* @file
* Contains jplayer.module..
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function jplayer_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the jplayer module.
case 'help.page.jplayer':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('jPlayer interface for Audiofield') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
jplayer_help | Implements hook_help(). |