You are here

function mp3player_help in MP3 Player 6

Same name and namespace in other branches
  1. 8 mp3player.module \mp3player_help()
  2. 6.2 mp3player.module \mp3player_help()
  3. 7.2 mp3player.module \mp3player_help()

Implementation of hook_help().

File

./mp3player.module, line 24
mp3player main module file.

Code

function mp3player_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#mp3player":
      $output = '<p>' . t("A module to integrate the WordPress Audio Player into Drupal.") . '</p>';
      break;
  }
  return $output;
}