blob: 551fd479a7e7779484457e375959802f8612110c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* ZAudio - a simple mp3 player
* A simple plugin to play mp3 files on the page
* http://wpaudioplayer.com/license
* http://wpaudioplayer.com/standalone
* @package ElggZAudio
**/
function zaudio_init() {
}
// Make sure the status initialisation function is called on initialisation
elgg_register_event_handler('init','system','zaudio_init',999);
?>
|