You are here

jplayer.module in jPlayer 8.2

Same filename and directory in other branches
  1. 6 jplayer.module
  2. 7.2 jplayer.module

Contains jplayer.module..

File

jplayer.module
View 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

Namesort descending Description
jplayer_help Implements hook_help().