mirror of
https://github.com/moodle/moodle.git
synced 2025-04-16 14:02:32 +02:00
Merge branch 'MDL-59811-master' of git://github.com/junpataleta/moodle
This commit is contained in:
commit
eda8027541
@ -221,28 +221,6 @@ class enrol_cohort_plugin extends enrol_plugin {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions.
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_unenrol_user($instance, $ue) && has_capability('enrol/cohort:unenrol', $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore instance and map settings.
|
||||
*
|
||||
|
@ -83,4 +83,56 @@ class enrol_cohort_lib_testcase extends advanced_testcase {
|
||||
$this->assertEquals($cohort->name . ' cohort (3)', $groupinfo->name);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'cohort';
|
||||
|
||||
// Only enable the cohort enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
// Enable this enrol plugin for the course.
|
||||
$plugin->add_instance($course);
|
||||
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
|
||||
// Teachers don't have enrol/cohort:unenrol capability by default. Login as admin for simplicity.
|
||||
$this->setAdminUser();
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Cohort-sync has no enrol actions for active students.
|
||||
$this->assertCount(0, $actions);
|
||||
|
||||
// Enrol actions for a suspended student.
|
||||
// Suspend the student.
|
||||
$ue->status = ENROL_USER_SUSPENDED;
|
||||
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Cohort-sync has enrol actions for suspended students -- unenrol.
|
||||
$this->assertCount(1, $actions);
|
||||
}
|
||||
}
|
||||
|
@ -82,28 +82,6 @@ class enrol_database_plugin extends enrol_plugin {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions.
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_unenrol_user($instance, $ue) && has_capability('enrol/database:unenrol', $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Forces synchronisation of user enrolments with external database,
|
||||
* does not create new courses.
|
||||
|
86
enrol/database/tests/lib_test.php
Normal file
86
enrol/database/tests/lib_test.php
Normal file
@ -0,0 +1,86 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Database enrolment tests.
|
||||
*
|
||||
* @package enrol_database
|
||||
* @copyright 2017 Jun Pataleta
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
|
||||
/**
|
||||
* Database enrolment tests.
|
||||
*
|
||||
* @package enrol_database
|
||||
* @copyright 2017 Jun Pataleta
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class enrol_database_lib_testcase extends advanced_testcase {
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'database';
|
||||
|
||||
// Only enable the database enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
// Enable this enrol plugin for the course.
|
||||
$plugin->add_instance($course);
|
||||
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
|
||||
// Teachers don't have enrol/database:unenrol capability by default. Login as admin for simplicity.
|
||||
$this->setAdminUser();
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Database enrol has 0 enrol actions for active users.
|
||||
$this->assertCount(0, $actions);
|
||||
|
||||
// Enrol actions for a suspended student.
|
||||
// Suspend the student.
|
||||
$ue->status = ENROL_USER_SUSPENDED;
|
||||
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Database enrol has enrol actions for suspended students -- unenrol.
|
||||
$this->assertCount(1, $actions);
|
||||
}
|
||||
}
|
@ -117,34 +117,6 @@ class enrol_flatfile_plugin extends enrol_plugin {
|
||||
return has_capability('enrol/flatfile:manage', $context);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions.
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_manage($instance) && has_capability("enrol/flatfile:manage", $context)) {
|
||||
$url = new moodle_url('/enrol/editenrolment.php', $params);
|
||||
$actionparams = array('class' => 'editenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_EDIT);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/edit', get_string('editenrolment', 'enrol')),
|
||||
get_string('editenrolment', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
if ($this->allow_unenrol_user($instance, $ue) && has_capability("enrol/flatfile:unenrol", $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Enrol user into course via enrol instance.
|
||||
*
|
||||
|
@ -498,4 +498,49 @@ class enrol_flatfile_testcase extends advanced_testcase {
|
||||
|
||||
$this->assertEquals(1, $DB->count_records('role_assignments', array('roleid' => $studentrole->id)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'flatfile';
|
||||
|
||||
// Only enable the flatfile enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
// Enable this enrol plugin for the course.
|
||||
$plugin->add_instance($course);
|
||||
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
|
||||
// Teachers don't have enrol/flatfile:manage and enrol/flatfile:unenrol capabilities by default.
|
||||
// Login as admin for simplicity.
|
||||
$this->setAdminUser();
|
||||
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Flatfile enrolment has 2 enrol actions for active users -- edit and unenrol.
|
||||
$this->assertCount(2, $actions);
|
||||
}
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ class course_enrolment_manager {
|
||||
|
||||
/**
|
||||
* The course context
|
||||
* @var stdClass
|
||||
* @var context
|
||||
*/
|
||||
protected $context;
|
||||
/**
|
||||
@ -933,7 +933,7 @@ class course_enrolment_manager {
|
||||
/**
|
||||
* Returns the course context
|
||||
*
|
||||
* @return stdClass
|
||||
* @return context
|
||||
*/
|
||||
public function get_context() {
|
||||
return $this->context;
|
||||
|
@ -377,34 +377,6 @@ class enrol_lti_plugin extends enrol_plugin {
|
||||
return $errors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions.
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_manage($instance) && has_capability("enrol/lti:manage", $context)) {
|
||||
$url = new moodle_url('/enrol/editenrolment.php', $params);
|
||||
$actionparams = array('class' => 'editenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_EDIT);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/edit', get_string('editenrolment', 'enrol')),
|
||||
get_string('editenrolment', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
if ($this->allow_unenrol_user($instance, $ue) && has_capability("enrol/lti:unenrol", $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore instance and map settings.
|
||||
*
|
||||
|
@ -117,4 +117,53 @@ class enrol_lti_testcase extends advanced_testcase {
|
||||
$this->assertFalse($DB->record_exists('enrol_lti_tools', [ 'id' => $tool->id ]));
|
||||
$this->assertFalse($DB->record_exists('enrol', [ 'id' => $instance->id ]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $DB, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'lti';
|
||||
|
||||
// Only enable the lti enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
$context = context_course::instance($course->id);
|
||||
$teacherroleid = $DB->get_field('role', 'id', ['shortname' => 'editingteacher'], MUST_EXIST);
|
||||
$studentroleid = $DB->get_field('role', 'id', ['shortname' => 'student'], MUST_EXIST);
|
||||
|
||||
// Enable this enrol plugin for the course.
|
||||
$fields = ['contextid' => $context->id, 'roleinstructor' => $teacherroleid, 'rolelearner' => $studentroleid];
|
||||
$plugin->add_instance($course, $fields);
|
||||
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
|
||||
// Teachers don't have enrol/lti:unenrol capability by default. Login as admin for simplicity.
|
||||
$this->setAdminUser();
|
||||
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// LTI enrolment has 1 enrol actions for active users -- unenrol.
|
||||
$this->assertCount(1, $actions);
|
||||
}
|
||||
}
|
||||
|
@ -361,34 +361,6 @@ class enrol_manual_plugin extends enrol_plugin {
|
||||
return $this->lasternoller;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions.
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_manage($instance) && has_capability("enrol/manual:manage", $context)) {
|
||||
$url = new moodle_url('/enrol/editenrolment.php', $params);
|
||||
$actionparams = array('class' => 'editenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_EDIT);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/edit', get_string('editenrolment', 'enrol')),
|
||||
get_string('editenrolment', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
if ($this->allow_unenrol_user($instance, $ue) && has_capability("enrol/manual:unenrol", $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* The manual plugin has several bulk operations that can be performed.
|
||||
* @param course_enrolment_manager $manager
|
||||
|
@ -493,4 +493,51 @@ class enrol_manual_lib_testcase extends advanced_testcase {
|
||||
$manualplugin->send_expiry_notifications($trace);
|
||||
$this->assertEquals(6, $sink->count());
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'manual';
|
||||
|
||||
// Only enable the manual enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
// Enable this enrol plugin for the course.
|
||||
$plugin->add_instance($course);
|
||||
|
||||
// Create a teacher.
|
||||
$teacher = $generator->create_user();
|
||||
// Enrol the teacher to the course.
|
||||
$generator->enrol_user($teacher->id, $course->id, 'editingteacher', $pluginname);
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
|
||||
// Login as the teacher.
|
||||
$this->setUser($teacher);
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Manual enrol has 2 enrol actions -- edit and unenrol.
|
||||
$this->assertCount(2, $actions);
|
||||
}
|
||||
}
|
||||
|
@ -95,28 +95,6 @@ class enrol_meta_plugin extends enrol_plugin {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_unenrol_user($instance, $ue) && has_capability('enrol/meta:unenrol', $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Called after updating/inserting course.
|
||||
*
|
||||
|
@ -870,4 +870,56 @@ class enrol_meta_plugin_testcase extends advanced_testcase {
|
||||
$this->assertEquals($expectedenrolments, $enrolments);
|
||||
$sink->close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'meta';
|
||||
|
||||
// Only enable the meta enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
// Enable this enrol plugin for the course.
|
||||
$plugin->add_instance($course);
|
||||
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
|
||||
// Teachers don't have enrol/meta:unenrol capability by default. Login as admin for simplicity.
|
||||
$this->setAdminUser();
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Meta-link enrolment has no enrol actions for active students.
|
||||
$this->assertCount(0, $actions);
|
||||
|
||||
// Enrol actions for a suspended student.
|
||||
// Suspend the student.
|
||||
$ue->status = ENROL_USER_SUSPENDED;
|
||||
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Meta-link enrolment has enrol actions for suspended students -- unenrol.
|
||||
$this->assertCount(1, $actions);
|
||||
}
|
||||
}
|
||||
|
@ -276,34 +276,6 @@ class enrol_paypal_plugin extends enrol_plugin {
|
||||
$this->enrol_user($instance, $userid, null, $data->timestart, $data->timeend, $data->status);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_manage($instance) && has_capability("enrol/paypal:manage", $context)) {
|
||||
$url = new moodle_url('/enrol/editenrolment.php', $params);
|
||||
$actionparams = array('class' => 'editenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_EDIT);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/edit', get_string('editenrolment', 'enrol')),
|
||||
get_string('editenrolment', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
if ($this->allow_unenrol($instance) && has_capability("enrol/paypal:unenrol", $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
public function cron() {
|
||||
$trace = new text_progress_trace();
|
||||
$this->process_expirations($trace);
|
||||
|
@ -168,4 +168,60 @@ class enrol_paypal_testcase extends advanced_testcase {
|
||||
$this->assertEquals(4, $DB->count_records('role_assignments', array('roleid'=>$studentrole->id)));
|
||||
$this->assertEquals(1, $DB->count_records('role_assignments', array('roleid'=>$teacherrole->id)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'paypal';
|
||||
|
||||
// Only enable the paypal enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
// Enable this enrol plugin for the course.
|
||||
$plugin->add_instance($course);
|
||||
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
|
||||
// Login as admin to see all enrol actions.
|
||||
$this->setAdminUser();
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
|
||||
// Paypal enrolment has 2 enrol actions for active users when logged in as admin: edit and unenrol.
|
||||
$this->assertCount(2, $actions);
|
||||
|
||||
// Enrol actions when viewing as a teacher.
|
||||
// Create a teacher.
|
||||
$teacher = $generator->create_user();
|
||||
// Enrol the teacher to the course.
|
||||
$generator->enrol_user($teacher->id, $course->id, 'editingteacher', $pluginname);
|
||||
// Login as the teacher.
|
||||
$this->setUser($teacher);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Teachers don't have the enrol/paypal:unenrol capability by default, but have enrol/paypal:manage.
|
||||
$this->assertCount(1, $actions);
|
||||
}
|
||||
}
|
||||
|
@ -521,34 +521,6 @@ class enrol_self_plugin extends enrol_plugin {
|
||||
return $this->lasternoller;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of the user enrolment actions.
|
||||
*
|
||||
* @param course_enrolment_manager $manager
|
||||
* @param stdClass $ue A user enrolment object
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
$actions = array();
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
if ($this->allow_manage($instance) && has_capability("enrol/self:manage", $context)) {
|
||||
$url = new moodle_url('/enrol/editenrolment.php', $params);
|
||||
$actionparams = array('class' => 'editenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_EDIT);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/edit', get_string('editenrolment', 'enrol')),
|
||||
get_string('editenrolment', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
if ($this->allow_unenrol($instance) && has_capability("enrol/self:unenrol", $context)) {
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = array('class' => 'unenrollink', 'rel' => $ue->id, 'data-action' => ENROL_ACTION_UNENROL);
|
||||
$actions[] = new user_enrolment_action(new pix_icon('t/delete', get_string('unenrol', 'enrol')),
|
||||
get_string('unenrol', 'enrol'), $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore instance and map settings.
|
||||
*
|
||||
|
@ -726,4 +726,51 @@ class enrol_self_testcase extends advanced_testcase {
|
||||
$contact = $selfplugin->get_welcome_email_contact(ENROL_SEND_EMAIL_FROM_NOREPLY, $context);
|
||||
$this->assertEquals($noreplyuser, $contact);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for getting user enrolment actions.
|
||||
*/
|
||||
public function test_get_user_enrolment_actions() {
|
||||
global $CFG, $DB, $PAGE;
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Set page URL to prevent debugging messages.
|
||||
$PAGE->set_url('/enrol/editinstance.php');
|
||||
|
||||
$pluginname = 'self';
|
||||
|
||||
// Only enable the self enrol plugin.
|
||||
$CFG->enrol_plugins_enabled = $pluginname;
|
||||
|
||||
$generator = $this->getDataGenerator();
|
||||
|
||||
// Get the enrol plugin.
|
||||
$plugin = enrol_get_plugin($pluginname);
|
||||
|
||||
// Create a course.
|
||||
$course = $generator->create_course();
|
||||
|
||||
// Create a teacher.
|
||||
$teacher = $generator->create_user();
|
||||
// Enrol the teacher to the course.
|
||||
$enrolresult = $generator->enrol_user($teacher->id, $course->id, 'editingteacher', $pluginname);
|
||||
$this->assertTrue($enrolresult);
|
||||
// Create a student.
|
||||
$student = $generator->create_user();
|
||||
// Enrol the student to the course.
|
||||
$enrolresult = $generator->enrol_user($student->id, $course->id, 'student', $pluginname);
|
||||
$this->assertTrue($enrolresult);
|
||||
|
||||
// Login as the teacher.
|
||||
$this->setUser($teacher);
|
||||
require_once($CFG->dirroot . '/enrol/locallib.php');
|
||||
$manager = new course_enrolment_manager($PAGE, $course);
|
||||
$userenrolments = $manager->get_user_enrolments($student->id);
|
||||
$this->assertCount(1, $userenrolments);
|
||||
|
||||
$ue = reset($userenrolments);
|
||||
$actions = $plugin->get_user_enrolment_actions($manager, $ue);
|
||||
// Self enrol has 2 enrol actions -- edit and unenrol.
|
||||
$this->assertCount(2, $actions);
|
||||
}
|
||||
}
|
||||
|
@ -2588,7 +2588,38 @@ abstract class enrol_plugin {
|
||||
* @return array An array of user_enrolment_actions
|
||||
*/
|
||||
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
|
||||
return array();
|
||||
$actions = [];
|
||||
$context = $manager->get_context();
|
||||
$instance = $ue->enrolmentinstance;
|
||||
$params = $manager->get_moodlepage()->url->params();
|
||||
$params['ue'] = $ue->id;
|
||||
|
||||
// Edit enrolment action.
|
||||
if ($this->allow_manage($instance) && has_capability("enrol/{$instance->enrol}:manage", $context)) {
|
||||
$title = get_string('editenrolment', 'enrol');
|
||||
$icon = new pix_icon('t/edit', $title);
|
||||
$url = new moodle_url('/enrol/editenrolment.php', $params);
|
||||
$actionparams = [
|
||||
'class' => 'editenrollink',
|
||||
'rel' => $ue->id,
|
||||
'data-action' => ENROL_ACTION_EDIT
|
||||
];
|
||||
$actions[] = new user_enrolment_action($icon, $title, $url, $actionparams);
|
||||
}
|
||||
|
||||
// Unenrol action.
|
||||
if ($this->allow_unenrol_user($instance, $ue) && has_capability("enrol/{$instance->enrol}:unenrol", $context)) {
|
||||
$title = get_string('unenrol', 'enrol');
|
||||
$icon = new pix_icon('t/delete', $title);
|
||||
$url = new moodle_url('/enrol/unenroluser.php', $params);
|
||||
$actionparams = [
|
||||
'class' => 'unenrollink',
|
||||
'rel' => $ue->id,
|
||||
'data-action' => ENROL_ACTION_UNENROL
|
||||
];
|
||||
$actions[] = new user_enrolment_action($icon, $title, $url, $actionparams);
|
||||
}
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -32,6 +32,13 @@ information provided here is intended especially for developers.
|
||||
These attributes enable enrol actions to be rendered via modals. If not added, clicking on the enrolment action buttons will still
|
||||
redirect the user to the appropriate enrolment action page. Though optional, it is recommended to add these attributes for a
|
||||
better user experience when performing enrol actions.
|
||||
* The enrol_plugin::get_user_enrolment_actions() implementations for core enrol plugins have been removed and moved to
|
||||
the parent method itself. New enrol plugins don't have to implement get_user_enrolment_actions(), but just need to
|
||||
make sure that they override:
|
||||
- enrol_plugin::allow_manage(), and/or
|
||||
- enrol_plugin::allow_unenrol_user() or enrol_plugin::allow_unenrol()
|
||||
Existing enrol plugins that override enrol_plugin::get_user_enrolment_actions() don't have to do anything, but can
|
||||
also opt to remove their own implementation of the method if they basically have the same logic as the parent method.
|
||||
* New optional parameter $enrolid for the following functions:
|
||||
- get_enrolled_join()
|
||||
- get_enrolled_sql()
|
||||
|
Loading…
x
Reference in New Issue
Block a user