You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
538 B
17 lines
538 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Footer of each frame of the Chat tool
|
|
*
|
|
* @author Olivier Brouckaert
|
|
* @package chamilo.chat
|
|
*/
|
|
?>
|
|
<audio id="audio">
|
|
<source src="<?php echo api_get_path(WEB_PATH);?>main/chat/sound/notification.wav" type="audio/wav"></source>
|
|
<source src="<?php echo api_get_path(WEB_PATH);?>main/chat/sound/notification.ogg" type="audio/ogg"></source>
|
|
<source src="<?php echo api_get_path(WEB_PATH);?>main/chat/sound/notification.mp3" type="audio/mpeg"></source>
|
|
</audio>
|
|
</body>
|
|
</html>
|