Source for file display_audiorecorder.php
Documentation is available at display_audiorecorder.php
// This file is part of the Dokeos software - See license and credits in the documentation/ directory
* Script opened in an iframe and containing the learning path's table of contents
* @package dokeos.learnpath
* @author Yannick Warnier <ywarnier@beeznest.org>
* @license GNU/GPL - See Dokeos license directory for details
//flag to allow for anonymous user - needs to be set before global.inc.php
require_once('back_compat.inc.php');
require_once('learnpath.class.php');
require_once('scorm.class.php');
require_once('aicc.class.php');
if(isset ($_SESSION['lpobject']))
die('Could not instanciate lp object');
$charset = $_SESSION['oLP']->encoding;
echo '<div id="audiorecorder"> ';
$audio_recorder_studentview = 'true';
$audio_recorder_item_id = $_SESSION['oLP']->current;
include('audiorecorder.inc.php');
// end of audiorecorder include
echo '</div></body></html>';
|