blob: af3bff891219628c3b187448c2104ba1a224b95c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.org/
**/
function zaudio_init() {
}
// Make sure the status initialisation function is called on initialisation
register_elgg_event_handler('init','system','zaudio_init',999);
?>
|