2009-09-24 08:05:55 +00:00
|
|
|
<?php
|
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2006-09-30 19:49:40 +00:00
|
|
|
/**
|
|
|
|
* This file plays the mediafile set in lesson settings.
|
|
|
|
*
|
|
|
|
* If there is a way to use the resource class instead of this code, please change to do so
|
|
|
|
*
|
|
|
|
*
|
2009-12-16 02:00:48 +00:00
|
|
|
* @package lesson
|
|
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2006-09-30 19:49:40 +00:00
|
|
|
**/
|
2005-06-15 23:29:50 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
require_once('../../config.php');
|
|
|
|
require_once($CFG->dirroot.'/mod/lesson/locallib.php');
|
2007-01-12 06:57:11 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
$id = required_param('id', PARAM_INT); // Course Module ID
|
|
|
|
$printclose = optional_param('printclose', 0, PARAM_INT);
|
2009-09-24 08:05:55 +00:00
|
|
|
|
2010-01-16 15:39:56 +00:00
|
|
|
$url = new moodle_url('/mod/lesson/mediafile.php', array('id'=>$id));
|
2009-12-16 02:00:48 +00:00
|
|
|
if ($printclose !== '') {
|
|
|
|
$url->param('printclose', $printclose);
|
|
|
|
}
|
|
|
|
$PAGE->set_url($url);
|
2009-09-24 08:05:55 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
try {
|
|
|
|
$cm = get_coursemodule_from_id('lesson', $id, 0, false, MUST_EXIST);;
|
|
|
|
$course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
|
|
|
|
$lesson = new lesson($DB->get_record('lesson', array('id' => $cm->instance), '*', MUST_EXIST));
|
|
|
|
} catch (Exception $e) {
|
|
|
|
print_error('invalidcoursemodule');
|
|
|
|
}
|
|
|
|
require_login($course, false, $cm);
|
2005-06-15 23:29:50 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
2009-12-17 14:06:22 +00:00
|
|
|
$lessonoutput = $PAGE->get_renderer('mod_lesson');
|
2005-06-15 23:29:50 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
// Get the mimetype
|
|
|
|
$mimetype = mimeinfo("type", $lesson->mediafile);
|
2007-01-12 06:57:11 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
if ($printclose) { // this is for framesets
|
|
|
|
if ($lesson->mediaclose) {
|
2009-09-07 06:28:37 +00:00
|
|
|
$PAGE->set_title($course->shortname);
|
2009-12-18 03:50:38 +00:00
|
|
|
echo $lessonoutput->header($lesson, $cm);
|
2009-12-16 02:00:48 +00:00
|
|
|
echo $OUTPUT->box('<form><div><input type="button" onclick="top.close();" value="'.get_string("closewindow").'" /></div></form>', 'lessonmediafilecontrol');
|
|
|
|
echo $lessonoutput->footer();
|
2007-05-28 18:55:15 +00:00
|
|
|
}
|
2009-12-16 02:00:48 +00:00
|
|
|
exit();
|
|
|
|
}
|
2007-01-12 06:57:11 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
$mediafilehtml = lesson_get_media_html($lesson, $context);
|
2009-11-01 15:03:10 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
$PAGE->set_title($course->shortname);
|
2009-12-18 03:50:38 +00:00
|
|
|
echo $lessonoutput->header($lesson, $cm);
|
2009-12-16 02:00:48 +00:00
|
|
|
// print the embedded media html code
|
|
|
|
echo $OUTPUT->box($mediafilehtml);
|
2009-11-01 15:03:10 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
if ($lesson->mediaclose) {
|
|
|
|
echo '<div class="lessonmediafilecontrol">';
|
|
|
|
echo $OUTPUT->close_window_button();
|
|
|
|
echo '</div>';
|
|
|
|
}
|
2009-11-01 15:03:10 +00:00
|
|
|
|
2009-12-16 02:00:48 +00:00
|
|
|
echo $lessonoutput->footer();
|