Note: You are currently viewing documentation for Moodle 3.8. Up-to-date documentation for the latest stable version of Moodle may be available here: Unenrolment.

Unenrolment: Difference between revisions

From MoodleDocs
(edit intro, add heading)
m (change setting link)
Line 5: Line 5:
Unenrolment can be controlled by the following:
Unenrolment can be controlled by the following:
* The ''longtimenosee'' variable in ''Administration > Configuration > [[Variables]]'' (or ''Administration > Server > Cleanup'' in 1.8), which specifies the time limit for which, if students haven't logged in, they are unenrolled from courses.
* The ''longtimenosee'' variable in ''Administration > Configuration > [[Variables]]'' (or ''Administration > Server > Cleanup'' in 1.8), which specifies the time limit for which, if students haven't logged in, they are unenrolled from courses.
* The ''Enrolment duration'' in the [[Settings|course settings]], which unenrols students after the specified time has elapsed.
* The ''Enrolment duration'' in the [[Course_settings|course settings]], which unenrols students after the specified time has elapsed.
* An [[Enrolment plugins]] may decide that the enrolment has expired. For example, a user name  for a course is not present in an [[LDAP enrolment|LDAP]] database, or if a [[Flat file]] is processed by Cron.
* An [[Enrolment plugins]] may decide that the enrolment has expired. For example, a user name  for a course is not present in an [[LDAP enrolment|LDAP]] database, or if a [[Flat file]] is processed by Cron.
* The capability [[Capabilities/moodle/role:unassignself|moodle/role:unassignself]], which allows a user to unassign themself from a role in the given context (see below).
* The capability [[Capabilities/moodle/role:unassignself|moodle/role:unassignself]], which allows a user to unassign themself from a role in the given context (see below).

Revision as of 18:26, 22 October 2008

Unenrolment is the process of not allowing a student to return to a course. Usually this process does not purge student information, just access.

Site and course settings for unenrolment

Unenrolment can be controlled by the following:

  • The longtimenosee variable in Administration > Configuration > Variables (or Administration > Server > Cleanup in 1.8), which specifies the time limit for which, if students haven't logged in, they are unenrolled from courses.
  • The Enrolment duration in the course settings, which unenrols students after the specified time has elapsed.
  • An Enrolment plugins may decide that the enrolment has expired. For example, a user name for a course is not present in an LDAP database, or if a Flat file is processed by Cron.
  • The capability moodle/role:unassignself, which allows a user to unassign themself from a role in the given context (see below).

Student unenrolment

By default, students are unable to unenrol themselves from courses.

To enable students to unenrol themselves from any course on the site that they are enrolled on:

  1. Access Administration > Users > Permissions > Define roles.
  2. Click the edit icon opposite the student role.
  3. Change the moodle/role:unassignself capability from not set to allow.
  4. Click the "Save changes" button at the bottom of the page.

To enable students to unenrol themselves from a particular course:

Course administration block for a student, showing unenrol link
  1. Follow the Assign roles link in the course administration block.
  2. Follow the "Override roles" link. (In Moodle 1.9 onwards, click the "Override permissions" tab.)
  3. Select the Student role.
  4. Set the capability moodle/role:unassignself to allow.
  5. Click the "Save changes" button at the bottom of the page.

Note: By default, only administrators are able to override permissions. Instructions on enabling teachers to override permissions can be found in Override permissions.

The role change will take effect immediately in Moodle 1.9, or when students next login in Moodle 1.7 and 1.8. Students will have an "Unenrol me from the course" link in the course administration block and an "Unenrol me from the course" button on their profile page.

Teacher unenrolment

By default, teachers may unenrol themselves from courses in which they are assigned the role of teacher.

To prevent teachers from unenrolling themselves by mistake:

  1. Access Administration > Users > Permissions > Define roles.
  2. Click the edit icon opposite the teacher role.
  3. Change the moodle/role:unassignself capability from allow to not set.
  4. Click the "Save changes" button at the bottom of the page.

See also