blob: 656959535839bf209fd0e727c1f270f4daca893c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir.'/formslib.php');
class mod_sqlbox_form extends moodleform {
public function definition() {
$mform = $this->_form;
$mform->addElement('header', 'general', 'SQLBox');
$mform->addElement('text', 'query', 'Query', 'size="50"');
$mform->addElement('editor', 'query2', 'Query2');
$mform->addElement('submit', 'button', 'Submit');
}
}
?>
|