diff options
Diffstat (limited to 'mod/zaudio/start.php')
| -rw-r--r-- | mod/zaudio/start.php | 29 | 
1 files changed, 13 insertions, 16 deletions
| diff --git a/mod/zaudio/start.php b/mod/zaudio/start.php index 551fd479a..c440456b7 100644 --- a/mod/zaudio/start.php +++ b/mod/zaudio/start.php @@ -1,18 +1,15 @@  <?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 + */ -     /** -     * 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); -		 -?>
\ No newline at end of file +elgg_register_event_handler('init', 'system', 'zaudio_init'); + +function zaudio_init() { +	elgg_extend_view('css/elgg', 'zaudio/css'); +} | 
