Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/widescale_exam/uninstall.php

13 lines
355 B

<?php
//Removing extra fields
$extra_fields = array('exam_room', 'exam_schedule', 'exam_password');
foreach($extra_fields as $extra) {
$extra_field = new ExtraField('user');
$field_info = $extra_field->get_handler_field_info_by_field_variable($extra);
if (isset($field_info['id'])) {
$extra_field->delete($field_info['id']);
}
}