-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmform_custom.php
201 lines (154 loc) · 8.36 KB
/
mform_custom.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Theme tester tool
*
* @package tool_themetester
* @copyright 2012 Simon Coggins
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
/**
* URL used as reference for form creation below:
* http://docs.moodle.org/dev/lib/formslib.php_Form_Definition#definition.28.29
*
* Todo:
* - it would be useful to apply an incremental className to form groups, to ctrl
* spacing between stacked groups, eg; 'class="felement fgroup fgroup1"'
**/
require_once(dirname(__FILE__) . '/../../../config.php');
require_once($CFG->libdir . '/adminlib.php');
require_once($CFG->dirroot.'/lib/formslib.php');
$strheading = 'Theme Tester: Moodle Forms: Custom Forms';
$url = new moodle_url('/admin/tool/themetester/mform_custom.php');
// Start setting up the page
$params = array();
$PAGE->set_context(context_system::instance());
$PAGE->set_url($url);
$PAGE->set_title($strheading);
$PAGE->set_heading($strheading);
admin_externalpage_setup('toolthemetester');
echo $OUTPUT->header();
echo html_writer::link(new moodle_url('mform.php'), '« Back to moodle forms');
echo $OUTPUT->heading($strheading);
echo $OUTPUT->box_start();
echo $OUTPUT->container_start();
echo $OUTPUT->heading('Tabular form (class "tabularform")', 3);
class tabular_form extends moodleform {
// Define the form
function definition() {
$mform =& $this->_form;
$renderer =& $mform->defaultRenderer();
// $renderer->clearAllTemplates() might be useful here depending on requirements
// limitation - we can't use the 'html_writer:table()' or 'flexible_table()' methods?
$thead_row = html_writer::tag('thead', html_writer::tag('tr', html_writer::tag('th','Select', array('class'=>'header c0', 'scope'=>'col')) . html_writer::tag('th','Item', array('class'=>'header c1', 'scope'=>'col')) ) );
$template_wrap = html_writer::tag('table', $thead_row . '{content}', array('class' => 'generaltable fcontainer') );
$template_element = html_writer::tag('tr', html_writer::tag('td', '<!-- END error -->{element}', array('class' => 'felement')) . html_writer::tag('td', '<!-- BEGIN required -->' . $mform->getReqHTML() . '<!-- END required -->{label}', array('class' => 'fitemtitle')), array('class' => 'fitem') );
$renderer->setGroupTemplate($template_wrap, 'tabular_checkboxes');
$renderer->setGroupElementTemplate($template_element, 'tabular_checkboxes');
$controlGroup=array();
$controlGroup[] =& $mform->createElement('checkbox', 'tabular_checkbox1', 'checkbox_name');
$controlGroup[] =& $mform->createElement('checkbox', 'tabular_checkbox2', 'checkbox_name');
$controlGroup[] =& $mform->createElement('checkbox', 'tabular_checkbox3', 'checkbox_name');
$controlGroup[] =& $mform->createElement('checkbox', 'tabular_checkbox4', 'checkbox_name');
$controlGroup[] =& $mform->createElement('checkbox', 'tabular_checkbox5', 'checkbox_name');
$mform->addGroup($controlGroup, 'tabular_checkboxes', '', array(' '), false);
$mform->addElement('submit', 'submit_btn', 'Submit');
$oldclass = $mform->getAttribute('class');
if (!empty($oldclass)){
$mform->updateAttributes(array('class'=>$oldclass.' tabularform'));
}else {
$mform->updateAttributes(array('class'=>'tabularform'));
}
}
}
$form = new tabular_form();
$data = $form->get_data();
$form->display();
//
echo html_writer::empty_tag('hr');
echo $OUTPUT->heading('Form with grouped \'action\' controls above \'data\' controls (class "actionform"), by providing new template markup to the Renderer.', 3);
class action_form extends moodleform {
// Define the form
function definition() {
$mform =& $this->_form;
$renderer =& $mform->defaultRenderer();
// 'action' controls grouped together here
$template_a_wrap = html_writer::tag('div', '{content}', array('class' => 'fcontainer actionform') );
$template_a_element = html_writer::tag('div', html_writer::tag('div', '<!-- BEGIN required -->' . $mform->getReqHTML() . '<!-- END required -->{label}', array('class' => 'fitemtitle')) . html_writer::tag('div', '<!-- END error -->{element}', array('class' => 'felement')), array('class' => 'fitem') );
$renderer->setGroupTemplate($template_a_wrap, 'action_group');
$renderer->setGroupElementTemplate($template_a_element, 'action_group');
$group=array();
$group[] =& $mform->createElement('date_time_selector', 'date_select', 'Choose a date:'); // grouped date_time_selector objects don't run the JS enhancement?
$c1 = $mform->createElement('text', 'text_entry', 'Search term:');
$mform->setType('text_entry', PARAM_INT);
$group[] =& $c1;
$c2 = $mform->createElement('checkbox', 'action_group_checkbox', 'checkbox_name');
$group[] =& $c2;
$group[] =& $mform->createElement('select', 'action_group_auth', 'select_menu_name', array('Option 1','Option 2','Option 3'));
$mform->addGroup($group, 'action_group', '', array(' '), false);
$mform->addElement('submit', 'submit_btn_2', 'Submit');
// render the table containing more controls
$thead_row = html_writer::tag('thead', html_writer::tag('tr', html_writer::tag('th','Select', array('class'=>'header c0', 'scope'=>'col')) . html_writer::tag('th','Item', array('class'=>'header c1', 'scope'=>'col')) ) );
$template_b_wrap = html_writer::tag('table', $thead_row . '{content}', array('class' => 'generaltable fcontainer') );
$template_b_element = html_writer::tag('tr', html_writer::tag('td', '<!-- END error -->{element}', array('class' => 'felement')) . html_writer::tag('td', '<!-- BEGIN required -->' . $mform->getReqHTML() . '<!-- END required -->{help}{label}', array('class' => 'fitemtitle')), array('class' => 'fitem') );
$renderer->setGroupTemplate($template_b_wrap, 'tabular_checkboxes_2');
$renderer->setGroupElementTemplate($template_b_element, 'tabular_checkboxes_2');
$group=array();
$group[] =& $mform->createElement('checkbox', 'tabular_checkbox6', 'checkbox_name');
$group[] =& $mform->createElement('checkbox', 'tabular_checkbox7', 'checkbox_name');
$group[] =& $mform->createElement('checkbox', 'tabular_checkbox8', 'checkbox_name');
$group[] =& $mform->createElement('checkbox', 'tabular_checkbox9', 'checkbox_name');
$group[] =& $mform->createElement('checkbox', 'tabular_checkbox10', 'checkbox_name');
$mform->addGroup($group, 'tabular_checkboxes_2', '', array(' '), false);
}
}
$form = new action_form(); // shouldn't this have an 'id' attribute of 'tabular_form'? ref. /lib/formslib.php:123
$data = $form->get_data();
$form->display();
//
echo html_writer::empty_tag('hr');
echo $OUTPUT->heading('Minimal forms', 3);
class minimal_form extends moodleform {
// Define the form
function definition() {
$mform =& $this->_form;
switch( $this->_customdata['type'] ){
case 'search' :
$mform->addElement('text', 'search');
$mform->setType('search', PARAM_RAW);
$mform->addElement('submit', 'search_btn', 'Go');
break;
case 'single_button' :
$this->add_action_buttons(false, 'Turn editing on');
break;
default:
break;
}
}
}
//
echo html_writer::empty_tag('hr');
$form = new minimal_form( null, array('type'=>'search') );
$data = $form->get_data();
$form->display();
//
echo html_writer::empty_tag('hr');
$form = new minimal_form( null, array('type'=>'single_button') );
$data = $form->get_data();
$form->display();
echo $OUTPUT->container_end();
echo $OUTPUT->box_end();
echo $OUTPUT->footer();