mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php // $Id$
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
|
|
$id = optional_param('id', 0, PARAM_INT); // Course Module ID
|
|
$r = optional_param('r', 0, PARAM_INT); // Resource
|
|
|
|
if ($r) { // Two ways to specify the resource
|
|
if (! $resource = get_record('resource', 'id', $r)) {
|
|
error('Resource ID was incorrect');
|
|
}
|
|
|
|
if (! $cm = get_coursemodule_from_instance('resource', $resource->id, $resource->course)) {
|
|
error('Course Module ID was incorrect');
|
|
}
|
|
|
|
} else if ($id) {
|
|
if (! $cm = get_coursemodule_from_id('resource', $id)) {
|
|
error('Course Module ID was incorrect');
|
|
}
|
|
|
|
if (! $resource = get_record('resource', 'id', $cm->instance)) {
|
|
error('Resource ID was incorrect');
|
|
}
|
|
} else {
|
|
error('No valid parameters!!');
|
|
}
|
|
|
|
require_course_login($course, true, $cm);
|
|
|
|
require ($CFG->dirroot.'/mod/resource/type/'.$resource->type.'/resource.class.php');
|
|
$resourceclass = 'resource_'.$resource->type;
|
|
$resourceinstance = new $resourceclass($cm->id);
|
|
|
|
$resourceinstance->display();
|
|
|
|
?>
|