You are here

function mp3player_simplecdnapi in MP3 Player 6

Same name and namespace in other branches
  1. 6.2 mp3player.module \mp3player_simplecdnapi()

Implementation of hook_simplecdnapi().

File

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

Code

function mp3player_simplecdnapi($op) {
  switch ($op) {
    case 'load':
      return array(
        'eid' => 'mp3player',
        'name' => 'MP3 Player',
      );
      break;
  }
}