mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
Merge branch 'MDL-63151-35' of git://github.com/rezaies/moodle into MOODLE_35_STABLE
This commit is contained in:
commit
5e97ea1423
2 changed files with 118 additions and 3 deletions
|
@ -815,15 +815,28 @@ function mod_wiki_get_fontawesome_icon_map() {
|
||||||
*
|
*
|
||||||
* @param calendar_event $event
|
* @param calendar_event $event
|
||||||
* @param \core_calendar\action_factory $factory
|
* @param \core_calendar\action_factory $factory
|
||||||
|
* @param int $userid User id to use for all capability checks, etc. Set to 0 for current user (default).
|
||||||
* @return \core_calendar\local\event\entities\action_interface|null
|
* @return \core_calendar\local\event\entities\action_interface|null
|
||||||
*/
|
*/
|
||||||
function mod_wiki_core_calendar_provide_event_action(calendar_event $event,
|
function mod_wiki_core_calendar_provide_event_action(calendar_event $event,
|
||||||
\core_calendar\action_factory $factory) {
|
\core_calendar\action_factory $factory,
|
||||||
$cm = get_fast_modinfo($event->courseid)->instances['wiki'][$event->instance];
|
int $userid = 0) {
|
||||||
|
global $USER;
|
||||||
|
|
||||||
|
if (!$userid) {
|
||||||
|
$userid = $USER->id;
|
||||||
|
}
|
||||||
|
|
||||||
|
$cm = get_fast_modinfo($event->courseid, $userid)->instances['wiki'][$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());
|
$completion = new \completion_info($cm->get_course());
|
||||||
|
|
||||||
$completiondata = $completion->get_data($cm, false);
|
$completiondata = $completion->get_data($cm, false, $userid);
|
||||||
|
|
||||||
if ($completiondata->completionstate != COMPLETION_INCOMPLETE) {
|
if ($completiondata->completionstate != COMPLETION_INCOMPLETE) {
|
||||||
return null;
|
return null;
|
||||||
|
|
|
@ -765,6 +765,67 @@ class mod_wiki_lib_testcase extends advanced_testcase {
|
||||||
$this->assertTrue($actionevent->is_actionable());
|
$this->assertTrue($actionevent->is_actionable());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function test_wiki_core_calendar_provide_event_action_for_non_user() {
|
||||||
|
global $CFG;
|
||||||
|
|
||||||
|
$this->resetAfterTest();
|
||||||
|
$this->setAdminUser();
|
||||||
|
|
||||||
|
// Create the activity.
|
||||||
|
$course = $this->getDataGenerator()->create_course();
|
||||||
|
$wiki = $this->getDataGenerator()->create_module('wiki', array('course' => $course->id));
|
||||||
|
|
||||||
|
// Create a calendar event.
|
||||||
|
$event = $this->create_action_event($course->id, $wiki->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_wiki_core_calendar_provide_event_action($event, $factory);
|
||||||
|
|
||||||
|
// Confirm the event is not shown at all.
|
||||||
|
$this->assertNull($actionevent);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_wiki_core_calendar_provide_event_action_for_user() {
|
||||||
|
global $CFG;
|
||||||
|
|
||||||
|
$this->resetAfterTest();
|
||||||
|
$this->setAdminUser();
|
||||||
|
|
||||||
|
// Create the activity.
|
||||||
|
$course = $this->getDataGenerator()->create_course();
|
||||||
|
$wiki = $this->getDataGenerator()->create_module('wiki', array('course' => $course->id));
|
||||||
|
$student = $this->getDataGenerator()->create_and_enrol($course, 'student');
|
||||||
|
|
||||||
|
// Create a calendar event.
|
||||||
|
$event = $this->create_action_event($course->id, $wiki->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_wiki_core_calendar_provide_event_action($event, $factory, $student->id);
|
||||||
|
|
||||||
|
// Confirm the event was decorated.
|
||||||
|
$this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent);
|
||||||
|
$this->assertEquals(get_string('view'), $actionevent->get_name());
|
||||||
|
$this->assertInstanceOf('moodle_url', $actionevent->get_url());
|
||||||
|
$this->assertEquals(1, $actionevent->get_item_count());
|
||||||
|
$this->assertTrue($actionevent->is_actionable());
|
||||||
|
}
|
||||||
|
|
||||||
public function test_wiki_core_calendar_provide_event_action_already_completed() {
|
public function test_wiki_core_calendar_provide_event_action_already_completed() {
|
||||||
global $CFG;
|
global $CFG;
|
||||||
|
|
||||||
|
@ -799,6 +860,47 @@ class mod_wiki_lib_testcase extends advanced_testcase {
|
||||||
$this->assertNull($actionevent);
|
$this->assertNull($actionevent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function test_wiki_core_calendar_provide_event_action_already_completed_for_user() {
|
||||||
|
global $CFG;
|
||||||
|
|
||||||
|
$this->resetAfterTest();
|
||||||
|
$this->setAdminUser();
|
||||||
|
|
||||||
|
$CFG->enablecompletion = 1;
|
||||||
|
|
||||||
|
// Create the activity.
|
||||||
|
$course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1));
|
||||||
|
$wiki = $this->getDataGenerator()->create_module('wiki', array('course' => $course->id),
|
||||||
|
array('completion' => 2, 'completionview' => 1, 'completionexpected' => time() + DAYSECS));
|
||||||
|
|
||||||
|
// Create 2 students and enrol them into the course.
|
||||||
|
$student1 = $this->getDataGenerator()->create_and_enrol($course, 'student');
|
||||||
|
$student2 = $this->getDataGenerator()->create_and_enrol($course, 'student');
|
||||||
|
|
||||||
|
// Get some additional data.
|
||||||
|
$cm = get_coursemodule_from_instance('wiki', $wiki->id);
|
||||||
|
|
||||||
|
// Create a calendar event.
|
||||||
|
$event = $this->create_action_event($course->id, $wiki->id,
|
||||||
|
\core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED);
|
||||||
|
|
||||||
|
// Mark the activity as completed for the $student1.
|
||||||
|
$completion = new completion_info($course);
|
||||||
|
$completion->set_module_viewed($cm, $student1->id);
|
||||||
|
|
||||||
|
// Now log in as $student2.
|
||||||
|
$this->setUser($student2);
|
||||||
|
|
||||||
|
// Create an action factory.
|
||||||
|
$factory = new \core_calendar\action_factory();
|
||||||
|
|
||||||
|
// Decorate action event for $student1.
|
||||||
|
$actionevent = mod_wiki_core_calendar_provide_event_action($event, $factory, $student1->id);
|
||||||
|
|
||||||
|
// Ensure result was null.
|
||||||
|
$this->assertNull($actionevent);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an action event.
|
* Creates an action event.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue