diff --git a/mod/glossary/lib.php b/mod/glossary/lib.php index ae65fa7ae22..53e2ba4620a 100644 --- a/mod/glossary/lib.php +++ b/mod/glossary/lib.php @@ -4240,6 +4240,11 @@ function mod_glossary_core_calendar_provide_event_action(calendar_event $event, $cm = get_fast_modinfo($event->courseid, $userid)->instances['glossary'][$event->instance]; + if (!$cm->uservisible) { + // The module is not visible to the user for any reason. + return null; + } + $completion = new \completion_info($cm->get_course()); $completiondata = $completion->get_data($cm, false, $userid); diff --git a/mod/glossary/tests/lib_test.php b/mod/glossary/tests/lib_test.php index 608b22d8aaf..32622395f85 100644 --- a/mod/glossary/tests/lib_test.php +++ b/mod/glossary/tests/lib_test.php @@ -141,6 +141,34 @@ class mod_glossary_lib_testcase extends advanced_testcase { $this->assertTrue($actionevent->is_actionable()); } + public function test_glossary_core_calendar_provide_event_action_as_non_user() { + global $CFG; + + $this->resetAfterTest(); + $this->setAdminUser(); + + // Create the activity. + $course = $this->getDataGenerator()->create_course(); + $glossary = $this->getDataGenerator()->create_module('glossary', array('course' => $course->id)); + + // Create a calendar event. + $event = $this->create_action_event($course->id, $glossary->id, + \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); + + // Now log out. + $CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities. + $this->setUser(); + + // Create an action factory. + $factory = new \core_calendar\action_factory(); + + // Decorate action event for the student. + $actionevent = mod_glossary_core_calendar_provide_event_action($event, $factory); + + // Confirm the event is not shown at all. + $this->assertNull($actionevent); + } + public function test_glossary_core_calendar_provide_event_action_for_user() { global $CFG; @@ -178,6 +206,36 @@ class mod_glossary_lib_testcase extends advanced_testcase { $this->assertTrue($actionevent->is_actionable()); } + public function test_glossary_core_calendar_provide_event_action_in_hidden_section() { + $this->resetAfterTest(); + $this->setAdminUser(); + + // Create a course. + $course = $this->getDataGenerator()->create_course(); + + // Create a student. + $student = $this->getDataGenerator()->create_and_enrol($course, 'student'); + + // Create the activity. + $glossary = $this->getDataGenerator()->create_module('glossary', array('course' => $course->id)); + + // Create a calendar event. + $event = $this->create_action_event($course->id, $glossary->id, + \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); + + // Set sections 0 as hidden. + set_section_visible($course->id, 0, 0); + + // Create an action factory. + $factory = new \core_calendar\action_factory(); + + // Decorate action event for the student. + $actionevent = mod_glossary_core_calendar_provide_event_action($event, $factory, $student->id); + + // Confirm the event is not shown at all. + $this->assertNull($actionevent); + } + public function test_glossary_core_calendar_provide_event_action_already_completed() { global $CFG;