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.
29 lines
938 B
29 lines
938 B
<?php //$id: $
|
|
/**
|
|
* Script that displays the header frame for lp_view.php
|
|
* @package dokeos.learnpath
|
|
* @author Yannick Warnier <ywarnier@beeznest.org>
|
|
*/
|
|
/**
|
|
* Script
|
|
*/
|
|
// name of the language file that needs to be included
|
|
$language_file[] = "scormdocument";
|
|
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'])){
|
|
$temp = $_SESSION['lpobject'];
|
|
$_SESSION['oLP'] = unserialize($temp);
|
|
}
|
|
//$nameTools = $_SESSION['oLP']->get_name();
|
|
$header_hide_main_div = true;
|
|
$interbreadcrumb[]= array ("url"=>"./lp_controller.php?action=list", "name"=> get_lang('Doc'));
|
|
//$interbreadcrumb[]= array ("url"=>"./lp_controller.php?action=view&lp_id=".$_SESSION['oLP']->get_id(), "name"=> $nameTools);
|
|
$noPHP_SELF = true;
|
|
Display::display_header($nameTools,"Path", null);
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|