mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
41 lines
1.2 KiB
PHP
41 lines
1.2 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 (!empty($CFG->forcelogin)) {
|
|
require_login();
|
|
}
|
|
|
|
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_record('course_modules', 'id', $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 ($CFG->dirroot.'/mod/resource/type/'.$resource->type.'/resource.class.php');
|
|
$resourceclass = 'resource_'.$resource->type;
|
|
$resourceinstance = new $resourceclass($cm->id);
|
|
|
|
$resourceinstance->display();
|
|
|
|
?>
|