forked from lsuits/lsu-block_quickmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signature_form.php
30 lines (22 loc) · 1 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
27
28
29
30
<?php
// Written at Louisiana State University
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', quickmail::_s('title'));
$mform->addElement('editor', 'signature_editor', quickmail::_s('sig'));
$mform->addElement('checkbox', 'default_flag', quickmail::_s('default_flag'));
$buttons = array(
$mform->createElement('submit', 'save', get_string('savechanges')),
$mform->createElement('cancel')
);
$mform->addGroup($buttons, 'buttons', quickmail::_s('actions'), array(' '), false);
$mform->addRule('title', null, 'required', null, 'client');
$mform->addRule('signature_editor', null, 'required', null);
}
}