. /** * lists all the instances of attforblock in a particular course * * @package mod_attendance * @copyright 2011 Artem Andreev * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once('../../config.php'); $id = required_param('id', PARAM_INT); // Course id if (! $course = $DB->get_record('course', array('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'); }