function mp3player_simplecdnapi in MP3 Player 6.2
Same name and namespace in other branches
- 6 mp3player.module \mp3player_simplecdnapi()
Implementation of hook_simplecdnapi().
File
- ./
mp3player.module, line 705 - mp3player main module file.
Code
function mp3player_simplecdnapi($op) {
switch ($op) {
case 'load':
return array(
'eid' => 'mp3player',
'name' => 'MP3 Player',
);
break;
}
}