mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
21 lines
463 B
PHP
21 lines
463 B
PHP
<?php
|
|
require_once ($CFG->dirroot.'/course/moodleform_mod.php');
|
|
|
|
class mod_label_mod_form extends moodleform_mod {
|
|
|
|
function definition() {
|
|
|
|
$mform =& $this->_form;
|
|
|
|
$this->add_intro_editor(true, get_string('labeltext', 'label'));
|
|
|
|
$this->standard_coursemodule_elements();
|
|
|
|
//-------------------------------------------------------------------------------
|
|
// buttons
|
|
$this->add_action_buttons(true, false, null);
|
|
|
|
}
|
|
|
|
}
|