You are here

mp3player.module in MP3 Player 8

Same filename and directory in other branches
  1. 6.2 mp3player.module
  2. 6 mp3player.module
  3. 7.2 mp3player.module

File

mp3player.module
View source
<?php

use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Form\FormStateInterface;

/**
 * Implements hook_help().
 */
function mp3player_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.mp3player':
      return '<p>' . t("A module to integrate the WordPress Audio Player into Drupal.") . '</p>';
  }
}

Functions

Namesort descending Description
mp3player_help Implements hook_help().