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.
 
 
 
 
 
 

20 lines
610 B

<?PHP // $Id: index.php,v 1.4.2.1 2009/02/23 19:22:40 dlnsk Exp $
/// This page lists all the instances of attforblock in a particular course
/// Replace attforblock with the name of your module
require_once('../../config.php');
$id = required_param('id', PARAM_INT); // Course id
if (! $course = get_record('course', 'id', $id)) {
error('Course ID is incorrect');
}
if ($att = array_pop(get_all_instances_in_course('attforblock', $course, NULL, true))) {
redirect("view.php?id=$att->coursemodule");
} else {
print_error('notfound', 'attforblock');
}
?>