diff --git a/classes/event/course_module_instance_list_viewed.php b/classes/event/course_module_instance_list_viewed.php index b3935e0..8f34039 100644 --- a/classes/event/course_module_instance_list_viewed.php +++ b/classes/event/course_module_instance_list_viewed.php @@ -43,7 +43,7 @@ class course_module_instance_list_viewed extends \core\event\course_module_insta $params = array( 'context' => \context_course::instance($course->id) ); - $event = \mod_attendance\event\course_module_instance_list_viewed::create($params); + $event = self::create($params); $event->add_record_snapshot('course', $course); return $event; } diff --git a/index.php b/index.php index 245b4e0..6abe561 100644 --- a/index.php +++ b/index.php @@ -47,14 +47,14 @@ $context = context_course::instance($course->id); require_capability('mod/attendance:view', $context); if (! $atts = get_all_instances_in_course("attendance", $course)) { - $url = new moodle_url('/course/view.php', array('id'=>$course->id)); + $url = new moodle_url('/course/view.php', array('id' => $course->id)); notice(get_string('thereareno', 'moodle', $strplural), $url); die; } $usesections = course_format_uses_sections($course->format); -// Print the list of instances, +// Print the list of instances. $timenow = time(); $strname = get_string("name"); @@ -71,8 +71,8 @@ if ($usesections) { } foreach ($atts as $att) { - //get the responses of each feedback - $viewurl = new moodle_url('/mod/attendance/view.php', array('id'=>$att->coursemodule)); + // Get the responses of each attendance. + $viewurl = new moodle_url('/mod/attendance/view.php', array('id' => $att->coursemodule)); $dimmedclass = $att->visible ? '' : 'class="dimmed"'; $link = ''.$att->name.'';