forked from meyersh/moodle-block_quickmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignature_form.php
26 lines (21 loc) · 1.02 KB
/
signature_form.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
require_once($CFG->libdir . '/formslib.php');
class signature_form extends moodleform {
public function definition() {
global $USER;
$mform =& $this->_form;
$mform->addElement('hidden', 'courseid', '');
$mform->addElement('hidden', 'id', '');
$mform->addElement('hidden', 'userid', $USER->id);
$mform->addElement('text', 'title', get_string('title', 'block_quickmail'));
$mform->addElement('editor', 'signature_editor', get_string('sig', 'block_quickmail'));
$mform->addElement('checkbox', 'default_flag', get_string('default_flag', 'block_quickmail'));
$buttons = array(
$mform->createElement('submit', 'save', get_string('savechanges')),
$mform->createElement('cancel')
);
$mform->addGroup($buttons, 'buttons', get_string('actions', 'block_quickmail'), array(' '), false);
$mform->addRule('title', null, 'required', null, 'client');
$mform->addRule('signature_editor', null, 'required', null);
}
}