$(function() {
$(".dialog").dialog("destroy");
$(".dialog").dialog({
autoOpen: false,
show: "blind",
resizable: false,
height:300,
width:550,
modal: true
});
$(".opener").click(function() {
var my_id = $(this).attr(\'id\');
var big_image = \'#main_graph_\' + my_id;
$( big_image ).dialog("open");
return false;
});
});
';
Display :: display_header($nameTools);
// Database table definitions
$tbl_course = Database :: get_main_table(TABLE_MAIN_COURSE);
$tbl_user = Database :: get_main_table(TABLE_MAIN_USER);
$tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
echo Tracking::show_user_progress(api_get_user_id());
echo '
';
echo Tracking::show_course_detail(api_get_user_id(), $_GET['course'], $_GET['session_id']);
Display :: display_footer();