mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
23 lines
572 B
PHP
23 lines
572 B
PHP
<?php //$Id$
|
|
|
|
require_once($CFG->libdir.'/formslib.php');
|
|
|
|
class editsection_form extends moodleform {
|
|
|
|
function definition() {
|
|
global $CFG, $DB;
|
|
|
|
$mform = $this->_form;
|
|
$course = $this->_customdata;
|
|
|
|
$mform->addElement('editor', 'summary', get_string('summary'), null, array('changeformat'=>false, 'maxfiles'=>-1));
|
|
|
|
$mform->addElement('hidden', 'id');
|
|
$mform->setType('id', PARAM_INT);
|
|
|
|
//--------------------------------------------------------------------------------
|
|
$this->add_action_buttons();
|
|
|
|
}
|
|
}
|