footer_frame.inc.php 538 B

1234567891011121314151617
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Footer of each frame of the Chat tool
  5. *
  6. * @author Olivier Brouckaert
  7. * @package chamilo.chat
  8. */
  9. ?>
  10. <audio id="audio">
  11. <source src="<?php echo api_get_path(WEB_PATH);?>main/chat/sound/notification.wav" type="audio/wav"></source>
  12. <source src="<?php echo api_get_path(WEB_PATH);?>main/chat/sound/notification.ogg" type="audio/ogg"></source>
  13. <source src="<?php echo api_get_path(WEB_PATH);?>main/chat/sound/notification.mp3" type="audio/mpeg"></source>
  14. </audio>
  15. </body>
  16. </html>