is_autostart.as.php 443 B

123456789101112131415161718192021222324
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script is used by the mp3 player to see if it should start
  5. * automatically or not
  6. * @package chamilo.include
  7. */
  8. /**
  9. * Code
  10. */
  11. require ('../../global.inc.php');
  12. switch ($_SESSION['whereami']) {
  13. case 'lp/build' :
  14. case 'document/create' :
  15. case 'document/edit' :
  16. $autostart = 'false';
  17. break;
  18. default:
  19. $autostart = 'true';
  20. }
  21. echo utf8_encode('autostart='.$autostart);