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.
42 lines
1.7 KiB
42 lines
1.7 KiB
<?php
|
|
|
|
/**
|
|
* *************************************************************************
|
|
* * Apply Enrol **
|
|
* *************************************************************************
|
|
* @copyright emeneo.com **
|
|
* @link emeneo.com **
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later **
|
|
* *************************************************************************
|
|
* ************************************************************************
|
|
*/
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
require_once($CFG->libdir.'/formslib.php');
|
|
|
|
class enrol_self_edit_form extends moodleform {
|
|
|
|
function definition() {
|
|
$mform = $this->_form;
|
|
|
|
list($instance, $plugin, $context) = $this->_customdata;
|
|
|
|
$mform->addElement('header', 'header', get_string('pluginname', 'enrol_apply'));
|
|
|
|
$mform->addElement('text', 'name', get_string('custominstancename', 'enrol'));
|
|
$options = array(ENROL_INSTANCE_ENABLED => get_string('yes'),
|
|
ENROL_INSTANCE_DISABLED => get_string('no'));
|
|
$mform->addElement('select', 'status', get_string('status', 'enrol_apply'), $options);
|
|
$mform->addElement('textarea', 'customtext1', get_string('editdescription', 'enrol_apply'));
|
|
|
|
|
|
$mform->addElement('hidden', 'id');
|
|
$mform->setType('id', PARAM_INT);
|
|
$mform->addElement('hidden', 'courseid');
|
|
$mform->setType('courseid', PARAM_INT);
|
|
|
|
$this->add_action_buttons(true, ($instance->id ? null : get_string('addinstance', 'enrol')));
|
|
|
|
$this->set_data($instance);
|
|
}
|
|
}
|