-
Notifications
You must be signed in to change notification settings - Fork 0
/
madlib.module
291 lines (257 loc) · 7.73 KB
/
madlib.module
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<?php
/**
* @file
* Example usage of Madlib module.
*/
/**
* Implements hook_menu().
*/
function madlib_menu() {
$items = array();
$items['admin/madlib'] = array(
'title' => 'Madlib',
'description' => 'Madlib Settings',
'page callback' => 'drupal_get_form',
'page arguments' => array('madlib_admin'),
'access arguments' => array('administer settings'),
'type' => MENU_NORMAL_ITEM,
'expanded' => TRUE,
);
$items['madlib'] = array(
'title' => 'Madlib',
'description' => 'Madlib Skeleton Form',
'page callback' => 'drupal_get_form',
'page arguments' => array('madlib_form'),
'access arguments' => array('view published content'),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}
/**
* Implements hook_permission().
*/
function madlib_permission() {
return array(
'administer madlib settings' => array(
'title' => t('Administer Madlib Settings'),
'description' => t('Perform administration tasks for Madlib'),
),
);
}
/**
* Page callback for administration settings.
*/
function madlib_admin() {
$form = array();
$form['madlib_checkbox'] = array(
'#type' => 'checkbox',
'#title' => t('Debug mode'),
'#default_value' => variable_get('madlib_checkbox', 0),
'#description' => t('Turn on/off debug mode'),
);
return system_settings_form($form);
}
/**
* Simple madlib form.
*/
function madlib_form($form, &$form_state) {
$form['madlib_section_1_fieldset'] = array(
'#type' => 'fieldset',
'#title' => t('Section 1'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['madlib_section_1_fieldset']['madlib_plural_noun_1_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Plural noun'),
'#default_value' => variable_get('madlib_plural_noun_1_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_1_fieldset']['madlib_plural_noun_2_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Plural noun'),
'#default_value' => variable_get('madlib_plural_noun_2_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_1_fieldset']['madlib_part_of_body_1_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Part of the body'),
'#default_value' => variable_get('madlib_part_of_body_1_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_2_fieldset'] = array(
'#type' => 'fieldset',
'#title' => t('Section 2'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['madlib_section_2_fieldset']['madlib_number_select'] = array(
'#type' => 'select',
'#title' => t('Number'),
'#options' => array(
0 => 1,
1 => 2,
2 => 3,
3 => 4,
4 => 5,
5 => 6,
6 => 7,
7 => 8,
8 => 9,
9 => 10,
),
'#default_value' => variable_get('madlib_number_select', ''),
'#required' => TRUE,
);
$form['madlib_section_2_fieldset']['madlib_plural_noun_3_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Plural noun'),
'#default_value' => variable_get('madlib_plural_noun_3_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_2_fieldset']['madlib_part_of_body_2_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Part of the body'),
'#default_value' => variable_get('madlib_part_of_body_2_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_2_fieldset']['madlib_type_of_liquid_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Type of liquid'),
'#default_value' => variable_get('madlib_type_of_liquid_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_2_fieldset']['madlib_part_of_body_plural_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Part of the body (plural)'),
'#default_value' => variable_get('madlib_part_of_body_plural_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset'] = array(
'#type' => 'fieldset',
'#title' => t('Section 3'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['madlib_section_3_fieldset']['madlib_part_of_body_3_select'] = array(
'#type' => 'select',
'#title' => t('Part of the body'),
'#options' => array(
'head' => array(
0 => t('eyes'),
1 => t('nose'),
),
'torso' => array(
0 => t('stomach'),
),
'legs' => array(
0 => t('feet'),
),
),
'#default_value' => variable_get('madlib_part_of_body_3_select', ''),
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_adjective_1_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Adjective'),
'#default_value' => variable_get('madlib_adjective_1_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_plural_noun_4_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Plural noun'),
'#default_value' => variable_get('madlib_plural_noun_4_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_adjective_2_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Adjective'),
'#default_value' => variable_get('madlib_adjective_2_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_adjective_3_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Adjective'),
'#default_value' => variable_get('madlib_adjective_3_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_verb_ing_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Verb ending in "ing"'),
'#default_value' => variable_get('madlib_verb_ing_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_noun_1_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Noun'),
'#default_value' => variable_get('madlib_noun_1_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_plural_noun_5_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Plural noun'),
'#default_value' => variable_get('madlib_plural_noun_5_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_section_3_fieldset']['madlib_noun_2_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Noun'),
'#default_value' => variable_get('madlib_noun_2_textfield', ''),
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
$form['madlib_submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
);
$form['madlib_note'] = array(
'#markup' => '<p>Click it, you know you want to.</p>',
);
return $form;
}
/**
* Madlib validate handler.
*/
function madlib_form_validate($form, &$form_state) {
$verb_ing = $form_state['values']['madlib_verb_ing_textfield'];
if (strtolower(substr($verb_ing, strlen($verb_ing) - 3, 3)) != 'ing') {
form_set_error('madlib_verb_ing_textfield',
'Verb_ing: Please enter a word that ends in "ing"');
}
}
/**
* Madlib form submit handler.
*/
function madlib_form_submit($form, &$form_state) {
drupal_set_message(t('Answers received'));
$form_state['rebuild'] = TRUE;
}