1
|
<?php
|
2
|
/**
|
3
|
* @file
|
4
|
* Functions for form and batch generation and processing.
|
5
|
*/
|
6
|
|
7
|
/**
|
8
|
* @defgroup forms Form builder functions
|
9
|
* @{
|
10
|
* Functions that build an abstract representation of a HTML form.
|
11
|
*
|
12
|
* All modules should declare their form builder functions to be in this
|
13
|
* group and each builder function should reference its validate and submit
|
14
|
* functions using \@see. Conversely, validate and submit functions should
|
15
|
* reference the form builder function using \@see. For examples, of this see
|
16
|
* system_modules_uninstall() or user_pass(), the latter of which has the
|
17
|
* following in its doxygen documentation:
|
18
|
* - \@ingroup forms
|
19
|
* - \@see user_pass_validate()
|
20
|
* - \@see user_pass_submit()
|
21
|
*
|
22
|
* @}
|
23
|
*/
|
24
|
|
25
|
/**
|
26
|
* @defgroup form_api Form generation
|
27
|
* @{
|
28
|
* Functions to enable the processing and display of HTML forms.
|
29
|
*
|
30
|
* Drupal uses these functions to achieve consistency in its form processing and
|
31
|
* presentation, while simplifying code and reducing the amount of HTML that
|
32
|
* must be explicitly generated by modules.
|
33
|
*
|
34
|
* The primary function used with forms is drupal_get_form(), which is
|
35
|
* used for forms presented interactively to a user. Forms can also be built and
|
36
|
* submitted programmatically without any user input using the
|
37
|
* drupal_form_submit() function.
|
38
|
*
|
39
|
* drupal_get_form() handles retrieving, processing, and displaying a rendered
|
40
|
* HTML form for modules automatically.
|
41
|
*
|
42
|
* Here is an example of how to use drupal_get_form() and a form builder
|
43
|
* function:
|
44
|
* @code
|
45
|
* $form = drupal_get_form('my_module_example_form');
|
46
|
* ...
|
47
|
* function my_module_example_form($form, &$form_state) {
|
48
|
* $form['submit'] = array(
|
49
|
* '#type' => 'submit',
|
50
|
* '#value' => t('Submit'),
|
51
|
* );
|
52
|
* return $form;
|
53
|
* }
|
54
|
* function my_module_example_form_validate($form, &$form_state) {
|
55
|
* // Validation logic.
|
56
|
* }
|
57
|
* function my_module_example_form_submit($form, &$form_state) {
|
58
|
* // Submission logic.
|
59
|
* }
|
60
|
* @endcode
|
61
|
*
|
62
|
* Or with any number of additional arguments:
|
63
|
* @code
|
64
|
* $extra = "extra";
|
65
|
* $form = drupal_get_form('my_module_example_form', $extra);
|
66
|
* ...
|
67
|
* function my_module_example_form($form, &$form_state, $extra) {
|
68
|
* $form['submit'] = array(
|
69
|
* '#type' => 'submit',
|
70
|
* '#value' => $extra,
|
71
|
* );
|
72
|
* return $form;
|
73
|
* }
|
74
|
* @endcode
|
75
|
*
|
76
|
* The $form argument to form-related functions is a structured array containing
|
77
|
* the elements and properties of the form. For information on the array
|
78
|
* components and format, and more detailed explanations of the Form API
|
79
|
* workflow, see the
|
80
|
* @link forms_api_reference.html Form API reference @endlink
|
81
|
* and the
|
82
|
* @link http://drupal.org/node/37775 Form API documentation section. @endlink
|
83
|
* In addition, there is a set of Form API tutorials in
|
84
|
* @link form_example_tutorial.inc the Form Example Tutorial @endlink which
|
85
|
* provide basics all the way up through multistep forms.
|
86
|
*
|
87
|
* In the form builder, validation, submission, and other form functions,
|
88
|
* $form_state is the primary influence on the processing of the form and is
|
89
|
* passed by reference to most functions, so they use it to communicate with
|
90
|
* the form system and each other.
|
91
|
*
|
92
|
* See drupal_build_form() for documentation of $form_state keys.
|
93
|
*/
|
94
|
|
95
|
/**
|
96
|
* Returns a renderable form array for a given form ID.
|
97
|
*
|
98
|
* This function should be used instead of drupal_build_form() when $form_state
|
99
|
* is not needed (i.e., when initially rendering the form) and is often
|
100
|
* used as a menu callback.
|
101
|
*
|
102
|
* @param $form_id
|
103
|
* The unique string identifying the desired form. If a function with that
|
104
|
* name exists, it is called to build the form array. Modules that need to
|
105
|
* generate the same form (or very similar forms) using different $form_ids
|
106
|
* can implement hook_forms(), which maps different $form_id values to the
|
107
|
* proper form constructor function. Examples may be found in node_forms(),
|
108
|
* and search_forms().
|
109
|
* @param ...
|
110
|
* Any additional arguments are passed on to the functions called by
|
111
|
* drupal_get_form(), including the unique form constructor function. For
|
112
|
* example, the node_edit form requires that a node object is passed in here
|
113
|
* when it is called. These are available to implementations of
|
114
|
* hook_form_alter() and hook_form_FORM_ID_alter() as the array
|
115
|
* $form_state['build_info']['args'].
|
116
|
*
|
117
|
* @return
|
118
|
* The form array.
|
119
|
*
|
120
|
* @see drupal_build_form()
|
121
|
*/
|
122
|
function drupal_get_form($form_id) {
|
123
|
$form_state = array();
|
124
|
|
125
|
$args = func_get_args();
|
126
|
// Remove $form_id from the arguments.
|
127
|
array_shift($args);
|
128
|
$form_state['build_info']['args'] = $args;
|
129
|
|
130
|
return drupal_build_form($form_id, $form_state);
|
131
|
}
|
132
|
|
133
|
/**
|
134
|
* Builds and process a form based on a form id.
|
135
|
*
|
136
|
* The form may also be retrieved from the cache if the form was built in a
|
137
|
* previous page-load. The form is then passed on for processing, validation
|
138
|
* and submission if there is proper input.
|
139
|
*
|
140
|
* @param $form_id
|
141
|
* The unique string identifying the desired form. If a function with that
|
142
|
* name exists, it is called to build the form array. Modules that need to
|
143
|
* generate the same form (or very similar forms) using different $form_ids
|
144
|
* can implement hook_forms(), which maps different $form_id values to the
|
145
|
* proper form constructor function. Examples may be found in node_forms(),
|
146
|
* and search_forms().
|
147
|
* @param $form_state
|
148
|
* An array which stores information about the form. This is passed as a
|
149
|
* reference so that the caller can use it to examine what in the form changed
|
150
|
* when the form submission process is complete. Furthermore, it may be used
|
151
|
* to store information related to the processed data in the form, which will
|
152
|
* persist across page requests when the 'cache' or 'rebuild' flag is set.
|
153
|
* The following parameters may be set in $form_state to affect how the form
|
154
|
* is rendered:
|
155
|
* - build_info: Internal. An associative array of information stored by Form
|
156
|
* API that is necessary to build and rebuild the form from cache when the
|
157
|
* original context may no longer be available:
|
158
|
* - args: A list of arguments to pass to the form constructor.
|
159
|
* - files: An optional array defining include files that need to be loaded
|
160
|
* for building the form. Each array entry may be the path to a file or
|
161
|
* another array containing values for the parameters 'type', 'module' and
|
162
|
* 'name' as needed by module_load_include(). The files listed here are
|
163
|
* automatically loaded by form_get_cache(). By default the current menu
|
164
|
* router item's 'file' definition is added, if any. Use
|
165
|
* form_load_include() to add include files from a form constructor.
|
166
|
* - form_id: Identification of the primary form being constructed and
|
167
|
* processed.
|
168
|
* - base_form_id: Identification for a base form, as declared in a
|
169
|
* hook_forms() implementation.
|
170
|
* - immutable: If this flag is set to TRUE, a new form build id is
|
171
|
* generated when the form is loaded from the cache. If it is subsequently
|
172
|
* saved to the cache again, it will have another cache id and therefore
|
173
|
* the original form and form-state will remain unaltered. This is
|
174
|
* important when page caching is enabled in order to prevent form state
|
175
|
* from leaking between anonymous users.
|
176
|
* - rebuild_info: Internal. Similar to 'build_info', but pertaining to
|
177
|
* drupal_rebuild_form().
|
178
|
* - rebuild: Normally, after the entire form processing is completed and
|
179
|
* submit handlers have run, a form is considered to be done and
|
180
|
* drupal_redirect_form() will redirect the user to a new page using a GET
|
181
|
* request (so a browser refresh does not re-submit the form). However, if
|
182
|
* 'rebuild' has been set to TRUE, then a new copy of the form is
|
183
|
* immediately built and sent to the browser, instead of a redirect. This is
|
184
|
* used for multi-step forms, such as wizards and confirmation forms.
|
185
|
* Normally, $form_state['rebuild'] is set by a submit handler, since it is
|
186
|
* usually logic within a submit handler that determines whether a form is
|
187
|
* done or requires another step. However, a validation handler may already
|
188
|
* set $form_state['rebuild'] to cause the form processing to bypass submit
|
189
|
* handlers and rebuild the form instead, even if there are no validation
|
190
|
* errors.
|
191
|
* - redirect: Used to redirect the form on submission. It may either be a
|
192
|
* string containing the destination URL, or an array of arguments
|
193
|
* compatible with drupal_goto(). See drupal_redirect_form() for complete
|
194
|
* information.
|
195
|
* - no_redirect: If set to TRUE the form will NOT perform a drupal_goto(),
|
196
|
* even if 'redirect' is set.
|
197
|
* - method: The HTTP form method to use for finding the input for this form.
|
198
|
* May be 'post' or 'get'. Defaults to 'post'. Note that 'get' method
|
199
|
* forms do not use form ids so are always considered to be submitted, which
|
200
|
* can have unexpected effects. The 'get' method should only be used on
|
201
|
* forms that do not change data, as that is exclusively the domain of
|
202
|
* 'post.'
|
203
|
* - cache: If set to TRUE the original, unprocessed form structure will be
|
204
|
* cached, which allows the entire form to be rebuilt from cache. A typical
|
205
|
* form workflow involves two page requests; first, a form is built and
|
206
|
* rendered for the user to fill in. Then, the user fills the form in and
|
207
|
* submits it, triggering a second page request in which the form must be
|
208
|
* built and processed. By default, $form and $form_state are built from
|
209
|
* scratch during each of these page requests. Often, it is necessary or
|
210
|
* desired to persist the $form and $form_state variables from the initial
|
211
|
* page request to the one that processes the submission. 'cache' can be set
|
212
|
* to TRUE to do this. A prominent example is an Ajax-enabled form, in which
|
213
|
* ajax_process_form() enables form caching for all forms that include an
|
214
|
* element with the #ajax property. (The Ajax handler has no way to build
|
215
|
* the form itself, so must rely on the cached version.) Note that the
|
216
|
* persistence of $form and $form_state happens automatically for
|
217
|
* (multi-step) forms having the 'rebuild' flag set, regardless of the value
|
218
|
* for 'cache'.
|
219
|
* - no_cache: If set to TRUE the form will NOT be cached, even if 'cache' is
|
220
|
* set.
|
221
|
* - values: An associative array of values submitted to the form. The
|
222
|
* validation functions and submit functions use this array for nearly all
|
223
|
* their decision making. (Note that #tree determines whether the values are
|
224
|
* a flat array or an array whose structure parallels the $form array. See
|
225
|
* @link forms_api_reference.html Form API reference @endlink for more
|
226
|
* information.) These are raw and unvalidated, so should not be used
|
227
|
* without a thorough understanding of security implications. In almost all
|
228
|
* cases, code should use the data in the 'values' array exclusively. The
|
229
|
* most common use of this key is for multi-step forms that need to clear
|
230
|
* some of the user input when setting 'rebuild'. The values correspond to
|
231
|
* $_POST or $_GET, depending on the 'method' chosen.
|
232
|
* - always_process: If TRUE and the method is GET, a form_id is not
|
233
|
* necessary. This should only be used on RESTful GET forms that do NOT
|
234
|
* write data, as this could lead to security issues. It is useful so that
|
235
|
* searches do not need to have a form_id in their query arguments to
|
236
|
* trigger the search.
|
237
|
* - must_validate: Ordinarily, a form is only validated once, but there are
|
238
|
* times when a form is resubmitted internally and should be validated
|
239
|
* again. Setting this to TRUE will force that to happen. This is most
|
240
|
* likely to occur during Ajax operations.
|
241
|
* - programmed: If TRUE, the form was submitted programmatically, usually
|
242
|
* invoked via drupal_form_submit(). Defaults to FALSE.
|
243
|
* - programmed_bypass_access_check: If TRUE, programmatic form submissions
|
244
|
* are processed without taking #access into account. Set this to FALSE
|
245
|
* when submitting a form programmatically with values that may have been
|
246
|
* input by the user executing the current request; this will cause #access
|
247
|
* to be respected as it would on a normal form submission. Defaults to
|
248
|
* TRUE.
|
249
|
* - process_input: Boolean flag. TRUE signifies correct form submission.
|
250
|
* This is always TRUE for programmed forms coming from drupal_form_submit()
|
251
|
* (see 'programmed' key), or if the form_id coming from the $_POST data is
|
252
|
* set and matches the current form_id.
|
253
|
* - submitted: If TRUE, the form has been submitted. Defaults to FALSE.
|
254
|
* - executed: If TRUE, the form was submitted and has been processed and
|
255
|
* executed. Defaults to FALSE.
|
256
|
* - triggering_element: (read-only) The form element that triggered
|
257
|
* submission. This is the same as the deprecated
|
258
|
* $form_state['clicked_button']. It is the element that caused submission,
|
259
|
* which may or may not be a button (in the case of Ajax forms). This key is
|
260
|
* often used to distinguish between various buttons in a submit handler,
|
261
|
* and is also used in Ajax handlers.
|
262
|
* - clicked_button: Deprecated. Use triggering_element instead.
|
263
|
* - has_file_element: Internal. If TRUE, there is a file element and Form API
|
264
|
* will set the appropriate 'enctype' HTML attribute on the form.
|
265
|
* - groups: Internal. An array containing references to fieldsets to render
|
266
|
* them within vertical tabs.
|
267
|
* - storage: $form_state['storage'] is not a special key, and no specific
|
268
|
* support is provided for it in the Form API. By tradition it was
|
269
|
* the location where application-specific data was stored for communication
|
270
|
* between the submit, validation, and form builder functions, especially
|
271
|
* in a multi-step-style form. Form implementations may use any key(s)
|
272
|
* within $form_state (other than the keys listed here and other reserved
|
273
|
* ones used by Form API internals) for this kind of storage. The
|
274
|
* recommended way to ensure that the chosen key doesn't conflict with ones
|
275
|
* used by the Form API or other modules is to use the module name as the
|
276
|
* key name or a prefix for the key name. For example, the Node module uses
|
277
|
* $form_state['node'] in node editing forms to store information about the
|
278
|
* node being edited, and this information stays available across successive
|
279
|
* clicks of the "Preview" button as well as when the "Save" button is
|
280
|
* finally clicked.
|
281
|
* - buttons: A list containing copies of all submit and button elements in
|
282
|
* the form.
|
283
|
* - complete form: A reference to the $form variable containing the complete
|
284
|
* form structure. #process, #after_build, #element_validate, and other
|
285
|
* handlers being invoked on a form element may use this reference to access
|
286
|
* other information in the form the element is contained in.
|
287
|
* - temporary: An array holding temporary data accessible during the current
|
288
|
* page request only. All $form_state properties that are not reserved keys
|
289
|
* (see form_state_keys_no_cache()) persist throughout a multistep form
|
290
|
* sequence. Form API provides this key for modules to communicate
|
291
|
* information across form-related functions during a single page request.
|
292
|
* It may be used to temporarily save data that does not need to or should
|
293
|
* not be cached during the whole form workflow; e.g., data that needs to be
|
294
|
* accessed during the current form build process only. There is no use-case
|
295
|
* for this functionality in Drupal core.
|
296
|
* - wrapper_callback: Modules that wish to pre-populate certain forms with
|
297
|
* common elements, such as back/next/save buttons in multi-step form
|
298
|
* wizards, may define a form builder function name that returns a form
|
299
|
* structure, which is passed on to the actual form builder function.
|
300
|
* Such implementations may either define the 'wrapper_callback' via
|
301
|
* hook_forms() or have to invoke drupal_build_form() (instead of
|
302
|
* drupal_get_form()) on their own in a custom menu callback to prepare
|
303
|
* $form_state accordingly.
|
304
|
* Information on how certain $form_state properties control redirection
|
305
|
* behavior after form submission may be found in drupal_redirect_form().
|
306
|
*
|
307
|
* @return
|
308
|
* The rendered form. This function may also perform a redirect and hence may
|
309
|
* not return at all, depending upon the $form_state flags that were set.
|
310
|
*
|
311
|
* @see drupal_redirect_form()
|
312
|
*/
|
313
|
function drupal_build_form($form_id, &$form_state) {
|
314
|
// Ensure some defaults; if already set they will not be overridden.
|
315
|
$form_state += form_state_defaults();
|
316
|
|
317
|
if (!isset($form_state['input'])) {
|
318
|
$form_state['input'] = $form_state['method'] == 'get' ? $_GET : $_POST;
|
319
|
}
|
320
|
|
321
|
if (isset($_SESSION['batch_form_state'])) {
|
322
|
// We've been redirected here after a batch processing. The form has
|
323
|
// already been processed, but needs to be rebuilt. See _batch_finished().
|
324
|
$form_state = $_SESSION['batch_form_state'];
|
325
|
unset($_SESSION['batch_form_state']);
|
326
|
return drupal_rebuild_form($form_id, $form_state);
|
327
|
}
|
328
|
|
329
|
// If the incoming input contains a form_build_id, we'll check the cache for a
|
330
|
// copy of the form in question. If it's there, we don't have to rebuild the
|
331
|
// form to proceed. In addition, if there is stored form_state data from a
|
332
|
// previous step, we'll retrieve it so it can be passed on to the form
|
333
|
// processing code.
|
334
|
$check_cache = isset($form_state['input']['form_id']) && $form_state['input']['form_id'] == $form_id && !empty($form_state['input']['form_build_id']);
|
335
|
if ($check_cache) {
|
336
|
$form = form_get_cache($form_state['input']['form_build_id'], $form_state);
|
337
|
}
|
338
|
|
339
|
// If the previous bit of code didn't result in a populated $form object, we
|
340
|
// are hitting the form for the first time and we need to build it from
|
341
|
// scratch.
|
342
|
if (!isset($form)) {
|
343
|
// If we attempted to serve the form from cache, uncacheable $form_state
|
344
|
// keys need to be removed after retrieving and preparing the form, except
|
345
|
// any that were already set prior to retrieving the form.
|
346
|
if ($check_cache) {
|
347
|
$form_state_before_retrieval = $form_state;
|
348
|
}
|
349
|
|
350
|
$form = drupal_retrieve_form($form_id, $form_state);
|
351
|
drupal_prepare_form($form_id, $form, $form_state);
|
352
|
|
353
|
// form_set_cache() removes uncacheable $form_state keys defined in
|
354
|
// form_state_keys_no_cache() in order for multi-step forms to work
|
355
|
// properly. This means that form processing logic for single-step forms
|
356
|
// using $form_state['cache'] may depend on data stored in those keys
|
357
|
// during drupal_retrieve_form()/drupal_prepare_form(), but form
|
358
|
// processing should not depend on whether the form is cached or not, so
|
359
|
// $form_state is adjusted to match what it would be after a
|
360
|
// form_set_cache()/form_get_cache() sequence. These exceptions are
|
361
|
// allowed to survive here:
|
362
|
// - always_process: Does not make sense in conjunction with form caching
|
363
|
// in the first place, since passing form_build_id as a GET parameter is
|
364
|
// not desired.
|
365
|
// - temporary: Any assigned data is expected to survives within the same
|
366
|
// page request.
|
367
|
if ($check_cache) {
|
368
|
$uncacheable_keys = array_flip(array_diff(form_state_keys_no_cache(), array('always_process', 'temporary')));
|
369
|
$form_state = array_diff_key($form_state, $uncacheable_keys);
|
370
|
$form_state += $form_state_before_retrieval;
|
371
|
}
|
372
|
}
|
373
|
|
374
|
// Now that we have a constructed form, process it. This is where:
|
375
|
// - Element #process functions get called to further refine $form.
|
376
|
// - User input, if any, gets incorporated in the #value property of the
|
377
|
// corresponding elements and into $form_state['values'].
|
378
|
// - Validation and submission handlers are called.
|
379
|
// - If this submission is part of a multistep workflow, the form is rebuilt
|
380
|
// to contain the information of the next step.
|
381
|
// - If necessary, the form and form state are cached or re-cached, so that
|
382
|
// appropriate information persists to the next page request.
|
383
|
// All of the handlers in the pipeline receive $form_state by reference and
|
384
|
// can use it to know or update information about the state of the form.
|
385
|
drupal_process_form($form_id, $form, $form_state);
|
386
|
|
387
|
// If this was a successful submission of a single-step form or the last step
|
388
|
// of a multi-step form, then drupal_process_form() issued a redirect to
|
389
|
// another page, or back to this page, but as a new request. Therefore, if
|
390
|
// we're here, it means that this is either a form being viewed initially
|
391
|
// before any user input, or there was a validation error requiring the form
|
392
|
// to be re-displayed, or we're in a multi-step workflow and need to display
|
393
|
// the form's next step. In any case, we have what we need in $form, and can
|
394
|
// return it for rendering.
|
395
|
return $form;
|
396
|
}
|
397
|
|
398
|
/**
|
399
|
* Retrieves default values for the $form_state array.
|
400
|
*/
|
401
|
function form_state_defaults() {
|
402
|
return array(
|
403
|
'rebuild' => FALSE,
|
404
|
'rebuild_info' => array(),
|
405
|
'redirect' => NULL,
|
406
|
// @todo 'args' is usually set, so no other default 'build_info' keys are
|
407
|
// appended via += form_state_defaults().
|
408
|
'build_info' => array(
|
409
|
'args' => array(),
|
410
|
'files' => array(),
|
411
|
),
|
412
|
'temporary' => array(),
|
413
|
'submitted' => FALSE,
|
414
|
'executed' => FALSE,
|
415
|
'programmed' => FALSE,
|
416
|
'programmed_bypass_access_check' => TRUE,
|
417
|
'cache'=> FALSE,
|
418
|
'method' => 'post',
|
419
|
'groups' => array(),
|
420
|
'buttons' => array(),
|
421
|
);
|
422
|
}
|
423
|
|
424
|
/**
|
425
|
* Constructs a new $form from the information in $form_state.
|
426
|
*
|
427
|
* This is the key function for making multi-step forms advance from step to
|
428
|
* step. It is called by drupal_process_form() when all user input processing,
|
429
|
* including calling validation and submission handlers, for the request is
|
430
|
* finished. If a validate or submit handler set $form_state['rebuild'] to TRUE,
|
431
|
* and if other conditions don't preempt a rebuild from happening, then this
|
432
|
* function is called to generate a new $form, the next step in the form
|
433
|
* workflow, to be returned for rendering.
|
434
|
*
|
435
|
* Ajax form submissions are almost always multi-step workflows, so that is one
|
436
|
* common use-case during which form rebuilding occurs. See ajax_form_callback()
|
437
|
* for more information about creating Ajax-enabled forms.
|
438
|
*
|
439
|
* @param $form_id
|
440
|
* The unique string identifying the desired form. If a function
|
441
|
* with that name exists, it is called to build the form array.
|
442
|
* Modules that need to generate the same form (or very similar forms)
|
443
|
* using different $form_ids can implement hook_forms(), which maps
|
444
|
* different $form_id values to the proper form constructor function. Examples
|
445
|
* may be found in node_forms() and search_forms().
|
446
|
* @param $form_state
|
447
|
* A keyed array containing the current state of the form.
|
448
|
* @param $old_form
|
449
|
* (optional) A previously built $form. Used to retain the #build_id and
|
450
|
* #action properties in Ajax callbacks and similar partial form rebuilds. The
|
451
|
* only properties copied from $old_form are the ones which both exist in
|
452
|
* $old_form and for which $form_state['rebuild_info']['copy'][PROPERTY] is
|
453
|
* TRUE. If $old_form is not passed, the entire $form is rebuilt freshly.
|
454
|
* 'rebuild_info' needs to be a separate top-level property next to
|
455
|
* 'build_info', since the contained data must not be cached.
|
456
|
*
|
457
|
* @return
|
458
|
* The newly built form.
|
459
|
*
|
460
|
* @see drupal_process_form()
|
461
|
* @see ajax_form_callback()
|
462
|
*/
|
463
|
function drupal_rebuild_form($form_id, &$form_state, $old_form = NULL) {
|
464
|
$form = drupal_retrieve_form($form_id, $form_state);
|
465
|
|
466
|
// If only parts of the form will be returned to the browser (e.g., Ajax or
|
467
|
// RIA clients), or if the form already had a new build ID regenerated when it
|
468
|
// was retrieved from the form cache, reuse the existing #build_id.
|
469
|
// Otherwise, a new #build_id is generated, to not clobber the previous
|
470
|
// build's data in the form cache; also allowing the user to go back to an
|
471
|
// earlier build, make changes, and re-submit.
|
472
|
// @see drupal_prepare_form()
|
473
|
$enforce_old_build_id = isset($old_form['#build_id']) && !empty($form_state['rebuild_info']['copy']['#build_id']);
|
474
|
$old_form_is_mutable_copy = isset($old_form['#build_id_old']);
|
475
|
if ($enforce_old_build_id || $old_form_is_mutable_copy) {
|
476
|
$form['#build_id'] = $old_form['#build_id'];
|
477
|
if ($old_form_is_mutable_copy) {
|
478
|
$form['#build_id_old'] = $old_form['#build_id_old'];
|
479
|
}
|
480
|
}
|
481
|
else {
|
482
|
if (isset($old_form['#build_id'])) {
|
483
|
$form['#build_id_old'] = $old_form['#build_id'];
|
484
|
}
|
485
|
$form['#build_id'] = 'form-' . drupal_random_key();
|
486
|
}
|
487
|
|
488
|
// #action defaults to request_uri(), but in case of Ajax and other partial
|
489
|
// rebuilds, the form is submitted to an alternate URL, and the original
|
490
|
// #action needs to be retained.
|
491
|
if (isset($old_form['#action']) && !empty($form_state['rebuild_info']['copy']['#action'])) {
|
492
|
$form['#action'] = $old_form['#action'];
|
493
|
}
|
494
|
|
495
|
drupal_prepare_form($form_id, $form, $form_state);
|
496
|
|
497
|
// Caching is normally done in drupal_process_form(), but what needs to be
|
498
|
// cached is the $form structure before it passes through form_builder(),
|
499
|
// so we need to do it here.
|
500
|
// @todo For Drupal 8, find a way to avoid this code duplication.
|
501
|
if (empty($form_state['no_cache'])) {
|
502
|
form_set_cache($form['#build_id'], $form, $form_state);
|
503
|
}
|
504
|
|
505
|
// Clear out all group associations as these might be different when
|
506
|
// re-rendering the form.
|
507
|
$form_state['groups'] = array();
|
508
|
|
509
|
// Return a fully built form that is ready for rendering.
|
510
|
return form_builder($form_id, $form, $form_state);
|
511
|
}
|
512
|
|
513
|
/**
|
514
|
* Fetches a form from cache.
|
515
|
*/
|
516
|
function form_get_cache($form_build_id, &$form_state) {
|
517
|
if ($cached = cache_get('form_' . $form_build_id, 'cache_form')) {
|
518
|
$form = $cached->data;
|
519
|
|
520
|
global $user;
|
521
|
if ((isset($form['#cache_token']) && drupal_valid_token($form['#cache_token'])) || (!isset($form['#cache_token']) && !$user->uid)) {
|
522
|
if ($cached = cache_get('form_state_' . $form_build_id, 'cache_form')) {
|
523
|
// Re-populate $form_state for subsequent rebuilds.
|
524
|
$form_state = $cached->data + $form_state;
|
525
|
|
526
|
// If the original form is contained in include files, load the files.
|
527
|
// @see form_load_include()
|
528
|
$form_state['build_info'] += array('files' => array());
|
529
|
foreach ($form_state['build_info']['files'] as $file) {
|
530
|
if (is_array($file)) {
|
531
|
$file += array('type' => 'inc', 'name' => $file['module']);
|
532
|
module_load_include($file['type'], $file['module'], $file['name']);
|
533
|
}
|
534
|
elseif (file_exists($file)) {
|
535
|
require_once DRUPAL_ROOT . '/' . $file;
|
536
|
}
|
537
|
}
|
538
|
}
|
539
|
// Generate a new #build_id if the cached form was rendered on a cacheable
|
540
|
// page.
|
541
|
if (!empty($form_state['build_info']['immutable'])) {
|
542
|
$form['#build_id_old'] = $form['#build_id'];
|
543
|
$form['#build_id'] = 'form-' . drupal_random_key();
|
544
|
$form['form_build_id']['#value'] = $form['#build_id'];
|
545
|
$form['form_build_id']['#id'] = $form['#build_id'];
|
546
|
unset($form_state['build_info']['immutable']);
|
547
|
}
|
548
|
return $form;
|
549
|
}
|
550
|
}
|
551
|
}
|
552
|
|
553
|
/**
|
554
|
* Stores a form in the cache.
|
555
|
*/
|
556
|
function form_set_cache($form_build_id, $form, $form_state) {
|
557
|
// 6 hours cache life time for forms should be plenty.
|
558
|
$expire = 21600;
|
559
|
|
560
|
// Ensure that the form build_id embedded in the form structure is the same as
|
561
|
// the one passed in as a parameter. This is an additional safety measure to
|
562
|
// prevent legacy code operating directly with form_get_cache and
|
563
|
// form_set_cache from accidentally overwriting immutable form state.
|
564
|
if ($form['#build_id'] != $form_build_id) {
|
565
|
watchdog('form', 'Form build-id mismatch detected while attempting to store a form in the cache.', array(), WATCHDOG_ERROR);
|
566
|
return;
|
567
|
}
|
568
|
|
569
|
// Cache form structure.
|
570
|
if (isset($form)) {
|
571
|
if ($GLOBALS['user']->uid) {
|
572
|
$form['#cache_token'] = drupal_get_token();
|
573
|
}
|
574
|
unset($form['#build_id_old']);
|
575
|
cache_set('form_' . $form_build_id, $form, 'cache_form', REQUEST_TIME + $expire);
|
576
|
}
|
577
|
|
578
|
// Cache form state.
|
579
|
if (variable_get('cache', 0) && drupal_page_is_cacheable()) {
|
580
|
$form_state['build_info']['immutable'] = TRUE;
|
581
|
}
|
582
|
if ($data = array_diff_key($form_state, array_flip(form_state_keys_no_cache()))) {
|
583
|
cache_set('form_state_' . $form_build_id, $data, 'cache_form', REQUEST_TIME + $expire);
|
584
|
}
|
585
|
}
|
586
|
|
587
|
/**
|
588
|
* Returns an array of $form_state keys that shouldn't be cached.
|
589
|
*/
|
590
|
function form_state_keys_no_cache() {
|
591
|
return array(
|
592
|
// Public properties defined by form constructors and form handlers.
|
593
|
'always_process',
|
594
|
'must_validate',
|
595
|
'rebuild',
|
596
|
'rebuild_info',
|
597
|
'redirect',
|
598
|
'no_redirect',
|
599
|
'temporary',
|
600
|
// Internal properties defined by form processing.
|
601
|
'buttons',
|
602
|
'triggering_element',
|
603
|
'clicked_button',
|
604
|
'complete form',
|
605
|
'groups',
|
606
|
'input',
|
607
|
'method',
|
608
|
'submit_handlers',
|
609
|
'submitted',
|
610
|
'executed',
|
611
|
'validate_handlers',
|
612
|
'values',
|
613
|
);
|
614
|
}
|
615
|
|
616
|
/**
|
617
|
* Ensures an include file is loaded whenever the form is processed.
|
618
|
*
|
619
|
* Example:
|
620
|
* @code
|
621
|
* // Load node.admin.inc from Node module.
|
622
|
* form_load_include($form_state, 'inc', 'node', 'node.admin');
|
623
|
* @endcode
|
624
|
*
|
625
|
* Use this function instead of module_load_include() from inside a form
|
626
|
* constructor or any form processing logic as it ensures that the include file
|
627
|
* is loaded whenever the form is processed. In contrast to using
|
628
|
* module_load_include() directly, form_load_include() makes sure the include
|
629
|
* file is correctly loaded also if the form is cached.
|
630
|
*
|
631
|
* @param $form_state
|
632
|
* The current state of the form.
|
633
|
* @param $type
|
634
|
* The include file's type (file extension).
|
635
|
* @param $module
|
636
|
* The module to which the include file belongs.
|
637
|
* @param $name
|
638
|
* (optional) The base file name (without the $type extension). If omitted,
|
639
|
* $module is used; i.e., resulting in "$module.$type" by default.
|
640
|
*
|
641
|
* @return
|
642
|
* The filepath of the loaded include file, or FALSE if the include file was
|
643
|
* not found or has been loaded already.
|
644
|
*
|
645
|
* @see module_load_include()
|
646
|
*/
|
647
|
function form_load_include(&$form_state, $type, $module, $name = NULL) {
|
648
|
if (!isset($name)) {
|
649
|
$name = $module;
|
650
|
}
|
651
|
if (!isset($form_state['build_info']['files']["$module:$name.$type"])) {
|
652
|
// Only add successfully included files to the form state.
|
653
|
if ($result = module_load_include($type, $module, $name)) {
|
654
|
$form_state['build_info']['files']["$module:$name.$type"] = array(
|
655
|
'type' => $type,
|
656
|
'module' => $module,
|
657
|
'name' => $name,
|
658
|
);
|
659
|
return $result;
|
660
|
}
|
661
|
}
|
662
|
return FALSE;
|
663
|
}
|
664
|
|
665
|
/**
|
666
|
* Retrieves, populates, and processes a form.
|
667
|
*
|
668
|
* This function allows you to supply values for form elements and submit a
|
669
|
* form for processing. Compare to drupal_get_form(), which also builds and
|
670
|
* processes a form, but does not allow you to supply values.
|
671
|
*
|
672
|
* There is no return value, but you can check to see if there are errors
|
673
|
* by calling form_get_errors().
|
674
|
*
|
675
|
* @param $form_id
|
676
|
* The unique string identifying the desired form. If a function
|
677
|
* with that name exists, it is called to build the form array.
|
678
|
* Modules that need to generate the same form (or very similar forms)
|
679
|
* using different $form_ids can implement hook_forms(), which maps
|
680
|
* different $form_id values to the proper form constructor function. Examples
|
681
|
* may be found in node_forms() and search_forms().
|
682
|
* @param $form_state
|
683
|
* A keyed array containing the current state of the form. Most important is
|
684
|
* the $form_state['values'] collection, a tree of data used to simulate the
|
685
|
* incoming $_POST information from a user's form submission. If a key is not
|
686
|
* filled in $form_state['values'], then the default value of the respective
|
687
|
* element is used. To submit an unchecked checkbox or other control that
|
688
|
* browsers submit by not having a $_POST entry, include the key, but set the
|
689
|
* value to NULL.
|
690
|
* @param ...
|
691
|
* Any additional arguments are passed on to the functions called by
|
692
|
* drupal_form_submit(), including the unique form constructor function.
|
693
|
* For example, the node_edit form requires that a node object be passed
|
694
|
* in here when it is called. Arguments that need to be passed by reference
|
695
|
* should not be included here, but rather placed directly in the $form_state
|
696
|
* build info array so that the reference can be preserved. For example, a
|
697
|
* form builder function with the following signature:
|
698
|
* @code
|
699
|
* function mymodule_form($form, &$form_state, &$object) {
|
700
|
* }
|
701
|
* @endcode
|
702
|
* would be called via drupal_form_submit() as follows:
|
703
|
* @code
|
704
|
* $form_state['values'] = $my_form_values;
|
705
|
* $form_state['build_info']['args'] = array(&$object);
|
706
|
* drupal_form_submit('mymodule_form', $form_state);
|
707
|
* @endcode
|
708
|
* For example:
|
709
|
* @code
|
710
|
* // register a new user
|
711
|
* $form_state = array();
|
712
|
* $form_state['values']['name'] = 'robo-user';
|
713
|
* $form_state['values']['mail'] = 'robouser@example.com';
|
714
|
* $form_state['values']['pass']['pass1'] = 'password';
|
715
|
* $form_state['values']['pass']['pass2'] = 'password';
|
716
|
* $form_state['values']['op'] = t('Create new account');
|
717
|
* drupal_form_submit('user_register_form', $form_state);
|
718
|
* @endcode
|
719
|
*/
|
720
|
function drupal_form_submit($form_id, &$form_state) {
|
721
|
if (!isset($form_state['build_info']['args'])) {
|
722
|
$args = func_get_args();
|
723
|
array_shift($args);
|
724
|
array_shift($args);
|
725
|
$form_state['build_info']['args'] = $args;
|
726
|
}
|
727
|
// Merge in default values.
|
728
|
$form_state += form_state_defaults();
|
729
|
|
730
|
// Populate $form_state['input'] with the submitted values before retrieving
|
731
|
// the form, to be consistent with what drupal_build_form() does for
|
732
|
// non-programmatic submissions (form builder functions may expect it to be
|
733
|
// there).
|
734
|
$form_state['input'] = $form_state['values'];
|
735
|
|
736
|
$form_state['programmed'] = TRUE;
|
737
|
$form = drupal_retrieve_form($form_id, $form_state);
|
738
|
// Programmed forms are always submitted.
|
739
|
$form_state['submitted'] = TRUE;
|
740
|
|
741
|
// Reset form validation.
|
742
|
$form_state['must_validate'] = TRUE;
|
743
|
form_clear_error();
|
744
|
|
745
|
drupal_prepare_form($form_id, $form, $form_state);
|
746
|
drupal_process_form($form_id, $form, $form_state);
|
747
|
}
|
748
|
|
749
|
/**
|
750
|
* Retrieves the structured array that defines a given form.
|
751
|
*
|
752
|
* @param $form_id
|
753
|
* The unique string identifying the desired form. If a function
|
754
|
* with that name exists, it is called to build the form array.
|
755
|
* Modules that need to generate the same form (or very similar forms)
|
756
|
* using different $form_ids can implement hook_forms(), which maps
|
757
|
* different $form_id values to the proper form constructor function.
|
758
|
* @param $form_state
|
759
|
* A keyed array containing the current state of the form, including the
|
760
|
* additional arguments to drupal_get_form() or drupal_form_submit() in the
|
761
|
* 'args' component of the array.
|
762
|
*/
|
763
|
function drupal_retrieve_form($form_id, &$form_state) {
|
764
|
$forms = &drupal_static(__FUNCTION__);
|
765
|
|
766
|
// Record the $form_id.
|
767
|
$form_state['build_info']['form_id'] = $form_id;
|
768
|
|
769
|
// Record the filepath of the include file containing the original form, so
|
770
|
// the form builder callbacks can be loaded when the form is being rebuilt
|
771
|
// from cache on a different path (such as 'system/ajax'). See
|
772
|
// form_get_cache(). Don't do this in maintenance mode as Drupal may not be
|
773
|
// fully bootstrapped (i.e. during installation) in which case
|
774
|
// menu_get_item() is not available.
|
775
|
if (!isset($form_state['build_info']['files']['menu']) && !defined('MAINTENANCE_MODE')) {
|
776
|
$item = menu_get_item();
|
777
|
if (!empty($item['include_file'])) {
|
778
|
// Do not use form_load_include() here, as the file is already loaded.
|
779
|
// Anyway, form_get_cache() is able to handle filepaths too.
|
780
|
$form_state['build_info']['files']['menu'] = $item['include_file'];
|
781
|
}
|
782
|
}
|
783
|
|
784
|
// We save two copies of the incoming arguments: one for modules to use
|
785
|
// when mapping form ids to constructor functions, and another to pass to
|
786
|
// the constructor function itself.
|
787
|
$args = $form_state['build_info']['args'];
|
788
|
|
789
|
// We first check to see if there's a function named after the $form_id.
|
790
|
// If there is, we simply pass the arguments on to it to get the form.
|
791
|
if (!function_exists($form_id)) {
|
792
|
// In cases where many form_ids need to share a central constructor function,
|
793
|
// such as the node editing form, modules can implement hook_forms(). It
|
794
|
// maps one or more form_ids to the correct constructor functions.
|
795
|
//
|
796
|
// We cache the results of that hook to save time, but that only works
|
797
|
// for modules that know all their form_ids in advance. (A module that
|
798
|
// adds a small 'rate this comment' form to each comment in a list
|
799
|
// would need a unique form_id for each one, for example.)
|
800
|
//
|
801
|
// So, we call the hook if $forms isn't yet populated, OR if it doesn't
|
802
|
// yet have an entry for the requested form_id.
|
803
|
if (!isset($forms) || !isset($forms[$form_id])) {
|
804
|
$forms = module_invoke_all('forms', $form_id, $args);
|
805
|
}
|
806
|
$form_definition = $forms[$form_id];
|
807
|
if (isset($form_definition['callback arguments'])) {
|
808
|
$args = array_merge($form_definition['callback arguments'], $args);
|
809
|
}
|
810
|
if (isset($form_definition['callback'])) {
|
811
|
$callback = $form_definition['callback'];
|
812
|
$form_state['build_info']['base_form_id'] = $callback;
|
813
|
}
|
814
|
// In case $form_state['wrapper_callback'] is not defined already, we also
|
815
|
// allow hook_forms() to define one.
|
816
|
if (!isset($form_state['wrapper_callback']) && isset($form_definition['wrapper_callback'])) {
|
817
|
$form_state['wrapper_callback'] = $form_definition['wrapper_callback'];
|
818
|
}
|
819
|
}
|
820
|
|
821
|
$form = array();
|
822
|
// We need to pass $form_state by reference in order for forms to modify it,
|
823
|
// since call_user_func_array() requires that referenced variables are passed
|
824
|
// explicitly.
|
825
|
$args = array_merge(array($form, &$form_state), $args);
|
826
|
|
827
|
// When the passed $form_state (not using drupal_get_form()) defines a
|
828
|
// 'wrapper_callback', then it requests to invoke a separate (wrapping) form
|
829
|
// builder function to pre-populate the $form array with form elements, which
|
830
|
// the actual form builder function ($callback) expects. This allows for
|
831
|
// pre-populating a form with common elements for certain forms, such as
|
832
|
// back/next/save buttons in multi-step form wizards. See drupal_build_form().
|
833
|
if (isset($form_state['wrapper_callback']) && function_exists($form_state['wrapper_callback'])) {
|
834
|
$form = call_user_func_array($form_state['wrapper_callback'], $args);
|
835
|
// Put the prepopulated $form into $args.
|
836
|
$args[0] = $form;
|
837
|
}
|
838
|
|
839
|
// If $callback was returned by a hook_forms() implementation, call it.
|
840
|
// Otherwise, call the function named after the form id.
|
841
|
$form = call_user_func_array(isset($callback) ? $callback : $form_id, $args);
|
842
|
$form['#form_id'] = $form_id;
|
843
|
|
844
|
return $form;
|
845
|
}
|
846
|
|
847
|
/**
|
848
|
* Processes a form submission.
|
849
|
*
|
850
|
* This function is the heart of form API. The form gets built, validated and in
|
851
|
* appropriate cases, submitted and rebuilt.
|
852
|
*
|
853
|
* @param $form_id
|
854
|
* The unique string identifying the current form.
|
855
|
* @param $form
|
856
|
* An associative array containing the structure of the form.
|
857
|
* @param $form_state
|
858
|
* A keyed array containing the current state of the form. This
|
859
|
* includes the current persistent storage data for the form, and
|
860
|
* any data passed along by earlier steps when displaying a
|
861
|
* multi-step form. Additional information, like the sanitized $_POST
|
862
|
* data, is also accumulated here.
|
863
|
*/
|
864
|
function drupal_process_form($form_id, &$form, &$form_state) {
|
865
|
$form_state['values'] = array();
|
866
|
|
867
|
// With $_GET, these forms are always submitted if requested.
|
868
|
if ($form_state['method'] == 'get' && !empty($form_state['always_process'])) {
|
869
|
if (!isset($form_state['input']['form_build_id'])) {
|
870
|
$form_state['input']['form_build_id'] = $form['#build_id'];
|
871
|
}
|
872
|
if (!isset($form_state['input']['form_id'])) {
|
873
|
$form_state['input']['form_id'] = $form_id;
|
874
|
}
|
875
|
if (!isset($form_state['input']['form_token']) && isset($form['#token'])) {
|
876
|
$form_state['input']['form_token'] = drupal_get_token($form['#token']);
|
877
|
}
|
878
|
}
|
879
|
|
880
|
// form_builder() finishes building the form by calling element #process
|
881
|
// functions and mapping user input, if any, to #value properties, and also
|
882
|
// storing the values in $form_state['values']. We need to retain the
|
883
|
// unprocessed $form in case it needs to be cached.
|
884
|
$unprocessed_form = $form;
|
885
|
$form = form_builder($form_id, $form, $form_state);
|
886
|
|
887
|
// Only process the input if we have a correct form submission.
|
888
|
if ($form_state['process_input']) {
|
889
|
drupal_validate_form($form_id, $form, $form_state);
|
890
|
|
891
|
// drupal_html_id() maintains a cache of element IDs it has seen,
|
892
|
// so it can prevent duplicates. We want to be sure we reset that
|
893
|
// cache when a form is processed, so scenarios that result in
|
894
|
// the form being built behind the scenes and again for the
|
895
|
// browser don't increment all the element IDs needlessly.
|
896
|
if (!form_get_errors()) {
|
897
|
// In case of errors, do not break HTML IDs of other forms.
|
898
|
drupal_static_reset('drupal_html_id');
|
899
|
}
|
900
|
|
901
|
if ($form_state['submitted'] && !form_get_errors() && !$form_state['rebuild']) {
|
902
|
// Execute form submit handlers.
|
903
|
form_execute_handlers('submit', $form, $form_state);
|
904
|
|
905
|
// We'll clear out the cached copies of the form and its stored data
|
906
|
// here, as we've finished with them. The in-memory copies are still
|
907
|
// here, though.
|
908
|
if (!variable_get('cache', 0) && !empty($form_state['values']['form_build_id'])) {
|
909
|
cache_clear_all('form_' . $form_state['values']['form_build_id'], 'cache_form');
|
910
|
cache_clear_all('form_state_' . $form_state['values']['form_build_id'], 'cache_form');
|
911
|
}
|
912
|
|
913
|
// If batches were set in the submit handlers, we process them now,
|
914
|
// possibly ending execution. We make sure we do not react to the batch
|
915
|
// that is already being processed (if a batch operation performs a
|
916
|
// drupal_form_submit).
|
917
|
if ($batch =& batch_get() && !isset($batch['current_set'])) {
|
918
|
// Store $form_state information in the batch definition.
|
919
|
// We need the full $form_state when either:
|
920
|
// - Some submit handlers were saved to be called during batch
|
921
|
// processing. See form_execute_handlers().
|
922
|
// - The form is multistep.
|
923
|
// In other cases, we only need the information expected by
|
924
|
// drupal_redirect_form().
|
925
|
if ($batch['has_form_submits'] || !empty($form_state['rebuild'])) {
|
926
|
$batch['form_state'] = $form_state;
|
927
|
}
|
928
|
else {
|
929
|
$batch['form_state'] = array_intersect_key($form_state, array_flip(array('programmed', 'rebuild', 'storage', 'no_redirect', 'redirect')));
|
930
|
}
|
931
|
|
932
|
$batch['progressive'] = !$form_state['programmed'];
|
933
|
batch_process();
|
934
|
|
935
|
// Execution continues only for programmatic forms.
|
936
|
// For 'regular' forms, we get redirected to the batch processing
|
937
|
// page. Form redirection will be handled in _batch_finished(),
|
938
|
// after the batch is processed.
|
939
|
}
|
940
|
|
941
|
// Set a flag to indicate the the form has been processed and executed.
|
942
|
$form_state['executed'] = TRUE;
|
943
|
|
944
|
// Redirect the form based on values in $form_state.
|
945
|
drupal_redirect_form($form_state);
|
946
|
}
|
947
|
|
948
|
// Don't rebuild or cache form submissions invoked via drupal_form_submit().
|
949
|
if (!empty($form_state['programmed'])) {
|
950
|
return;
|
951
|
}
|
952
|
|
953
|
// If $form_state['rebuild'] has been set and input has been processed
|
954
|
// without validation errors, we are in a multi-step workflow that is not
|
955
|
// yet complete. A new $form needs to be constructed based on the changes
|
956
|
// made to $form_state during this request. Normally, a submit handler sets
|
957
|
// $form_state['rebuild'] if a fully executed form requires another step.
|
958
|
// However, for forms that have not been fully executed (e.g., Ajax
|
959
|
// submissions triggered by non-buttons), there is no submit handler to set
|
960
|
// $form_state['rebuild']. It would not make sense to redisplay the
|
961
|
// identical form without an error for the user to correct, so we also
|
962
|
// rebuild error-free non-executed forms, regardless of
|
963
|
// $form_state['rebuild'].
|
964
|
// @todo D8: Simplify this logic; considering Ajax and non-HTML front-ends,
|
965
|
// along with element-level #submit properties, it makes no sense to have
|
966
|
// divergent form execution based on whether the triggering element has
|
967
|
// #executes_submit_callback set to TRUE.
|
968
|
if (($form_state['rebuild'] || !$form_state['executed']) && !form_get_errors()) {
|
969
|
// Form building functions (e.g., _form_builder_handle_input_element())
|
970
|
// may use $form_state['rebuild'] to determine if they are running in the
|
971
|
// context of a rebuild, so ensure it is set.
|
972
|
$form_state['rebuild'] = TRUE;
|
973
|
$form = drupal_rebuild_form($form_id, $form_state, $form);
|
974
|
}
|
975
|
}
|
976
|
|
977
|
// After processing the form, the form builder or a #process callback may
|
978
|
// have set $form_state['cache'] to indicate that the form and form state
|
979
|
// shall be cached. But the form may only be cached if the 'no_cache' property
|
980
|
// is not set to TRUE. Only cache $form as it was prior to form_builder(),
|
981
|
// because form_builder() must run for each request to accommodate new user
|
982
|
// input. Rebuilt forms are not cached here, because drupal_rebuild_form()
|
983
|
// already takes care of that.
|
984
|
if (!$form_state['rebuild'] && $form_state['cache'] && empty($form_state['no_cache'])) {
|
985
|
form_set_cache($form['#build_id'], $unprocessed_form, $form_state);
|
986
|
}
|
987
|
}
|
988
|
|
989
|
/**
|
990
|
* Prepares a structured form array.
|
991
|
*
|
992
|
* Adds required elements, executes any hook_form_alter functions, and
|
993
|
* optionally inserts a validation token to prevent tampering.
|
994
|
*
|
995
|
* @param $form_id
|
996
|
* A unique string identifying the form for validation, submission,
|
997
|
* theming, and hook_form_alter functions.
|
998
|
* @param $form
|
999
|
* An associative array containing the structure of the form.
|
1000
|
* @param $form_state
|
1001
|
* A keyed array containing the current state of the form. Passed
|
1002
|
* in here so that hook_form_alter() calls can use it, as well.
|
1003
|
*/
|
1004
|
function drupal_prepare_form($form_id, &$form, &$form_state) {
|
1005
|
global $user;
|
1006
|
|
1007
|
$form['#type'] = 'form';
|
1008
|
$form_state['programmed'] = isset($form_state['programmed']) ? $form_state['programmed'] : FALSE;
|
1009
|
|
1010
|
// Fix the form method, if it is 'get' in $form_state, but not in $form.
|
1011
|
if ($form_state['method'] == 'get' && !isset($form['#method'])) {
|
1012
|
$form['#method'] = 'get';
|
1013
|
}
|
1014
|
|
1015
|
// Generate a new #build_id for this form, if none has been set already. The
|
1016
|
// form_build_id is used as key to cache a particular build of the form. For
|
1017
|
// multi-step forms, this allows the user to go back to an earlier build, make
|
1018
|
// changes, and re-submit.
|
1019
|
// @see drupal_build_form()
|
1020
|
// @see drupal_rebuild_form()
|
1021
|
if (!isset($form['#build_id'])) {
|
1022
|
$form['#build_id'] = 'form-' . drupal_random_key();
|
1023
|
}
|
1024
|
$form['form_build_id'] = array(
|
1025
|
'#type' => 'hidden',
|
1026
|
'#value' => $form['#build_id'],
|
1027
|
'#id' => $form['#build_id'],
|
1028
|
'#name' => 'form_build_id',
|
1029
|
// Form processing and validation requires this value, so ensure the
|
1030
|
// submitted form value appears literally, regardless of custom #tree
|
1031
|
// and #parents being set elsewhere.
|
1032
|
'#parents' => array('form_build_id'),
|
1033
|
);
|
1034
|
|
1035
|
// Add a token, based on either #token or form_id, to any form displayed to
|
1036
|
// authenticated users. This ensures that any submitted form was actually
|
1037
|
// requested previously by the user and protects against cross site request
|
1038
|
// forgeries.
|
1039
|
// This does not apply to programmatically submitted forms. Furthermore, since
|
1040
|
// tokens are session-bound and forms displayed to anonymous users are very
|
1041
|
// likely cached, we cannot assign a token for them.
|
1042
|
// During installation, there is no $user yet.
|
1043
|
if (!empty($user->uid) && !$form_state['programmed']) {
|
1044
|
// Form constructors may explicitly set #token to FALSE when cross site
|
1045
|
// request forgery is irrelevant to the form, such as search forms.
|
1046
|
if (isset($form['#token']) && $form['#token'] === FALSE) {
|
1047
|
unset($form['#token']);
|
1048
|
}
|
1049
|
// Otherwise, generate a public token based on the form id.
|
1050
|
else {
|
1051
|
$form['#token'] = $form_id;
|
1052
|
$form['form_token'] = array(
|
1053
|
'#id' => drupal_html_id('edit-' . $form_id . '-form-token'),
|
1054
|
'#type' => 'token',
|
1055
|
'#default_value' => drupal_get_token($form['#token']),
|
1056
|
// Form processing and validation requires this value, so ensure the
|
1057
|
// submitted form value appears literally, regardless of custom #tree
|
1058
|
// and #parents being set elsewhere.
|
1059
|
'#parents' => array('form_token'),
|
1060
|
);
|
1061
|
}
|
1062
|
}
|
1063
|
|
1064
|
if (isset($form_id)) {
|
1065
|
$form['form_id'] = array(
|
1066
|
'#type' => 'hidden',
|
1067
|
'#value' => $form_id,
|
1068
|
'#id' => drupal_html_id("edit-$form_id"),
|
1069
|
// Form processing and validation requires this value, so ensure the
|
1070
|
// submitted form value appears literally, regardless of custom #tree
|
1071
|
// and #parents being set elsewhere.
|
1072
|
'#parents' => array('form_id'),
|
1073
|
);
|
1074
|
}
|
1075
|
if (!isset($form['#id'])) {
|
1076
|
$form['#id'] = drupal_html_id($form_id);
|
1077
|
}
|
1078
|
|
1079
|
$form += element_info('form');
|
1080
|
$form += array('#tree' => FALSE, '#parents' => array());
|
1081
|
|
1082
|
if (!isset($form['#validate'])) {
|
1083
|
// Ensure that modules can rely on #validate being set.
|
1084
|
$form['#validate'] = array();
|
1085
|
// Check for a handler specific to $form_id.
|
1086
|
if (function_exists($form_id . '_validate')) {
|
1087
|
$form['#validate'][] = $form_id . '_validate';
|
1088
|
}
|
1089
|
// Otherwise check whether this is a shared form and whether there is a
|
1090
|
// handler for the shared $form_id.
|
1091
|
elseif (isset($form_state['build_info']['base_form_id']) && function_exists($form_state['build_info']['base_form_id'] . '_validate')) {
|
1092
|
$form['#validate'][] = $form_state['build_info']['base_form_id'] . '_validate';
|
1093
|
}
|
1094
|
}
|
1095
|
|
1096
|
if (!isset($form['#submit'])) {
|
1097
|
// Ensure that modules can rely on #submit being set.
|
1098
|
$form['#submit'] = array();
|
1099
|
// Check for a handler specific to $form_id.
|
1100
|
if (function_exists($form_id . '_submit')) {
|
1101
|
$form['#submit'][] = $form_id . '_submit';
|
1102
|
}
|
1103
|
// Otherwise check whether this is a shared form and whether there is a
|
1104
|
// handler for the shared $form_id.
|
1105
|
elseif (isset($form_state['build_info']['base_form_id']) && function_exists($form_state['build_info']['base_form_id'] . '_submit')) {
|
1106
|
$form['#submit'][] = $form_state['build_info']['base_form_id'] . '_submit';
|
1107
|
}
|
1108
|
}
|
1109
|
|
1110
|
// If no #theme has been set, automatically apply theme suggestions.
|
1111
|
// theme_form() itself is in #theme_wrappers and not #theme. Therefore, the
|
1112
|
// #theme function only has to care for rendering the inner form elements,
|
1113
|
// not the form itself.
|
1114
|
if (!isset($form['#theme'])) {
|
1115
|
$form['#theme'] = array($form_id);
|
1116
|
if (isset($form_state['build_info']['base_form_id'])) {
|
1117
|
$form['#theme'][] = $form_state['build_info']['base_form_id'];
|
1118
|
}
|
1119
|
}
|
1120
|
|
1121
|
// Invoke hook_form_alter(), hook_form_BASE_FORM_ID_alter(), and
|
1122
|
// hook_form_FORM_ID_alter() implementations.
|
1123
|
$hooks = array('form');
|
1124
|
if (isset($form_state['build_info']['base_form_id'])) {
|
1125
|
$hooks[] = 'form_' . $form_state['build_info']['base_form_id'];
|
1126
|
}
|
1127
|
$hooks[] = 'form_' . $form_id;
|
1128
|
drupal_alter($hooks, $form, $form_state, $form_id);
|
1129
|
}
|
1130
|
|
1131
|
|
1132
|
/**
|
1133
|
* Validates user-submitted form data in the $form_state array.
|
1134
|
*
|
1135
|
* @param $form_id
|
1136
|
* A unique string identifying the form for validation, submission,
|
1137
|
* theming, and hook_form_alter functions.
|
1138
|
* @param $form
|
1139
|
* An associative array containing the structure of the form, which is passed
|
1140
|
* by reference. Form validation handlers are able to alter the form structure
|
1141
|
* (like #process and #after_build callbacks during form building) in case of
|
1142
|
* a validation error. If a validation handler alters the form structure, it
|
1143
|
* is responsible for validating the values of changed form elements in
|
1144
|
* $form_state['values'] to prevent form submit handlers from receiving
|
1145
|
* unvalidated values.
|
1146
|
* @param $form_state
|
1147
|
* A keyed array containing the current state of the form. The current
|
1148
|
* user-submitted data is stored in $form_state['values'], though
|
1149
|
* form validation functions are passed an explicit copy of the
|
1150
|
* values for the sake of simplicity. Validation handlers can also use
|
1151
|
* $form_state to pass information on to submit handlers. For example:
|
1152
|
* $form_state['data_for_submission'] = $data;
|
1153
|
* This technique is useful when validation requires file parsing,
|
1154
|
* web service requests, or other expensive requests that should
|
1155
|
* not be repeated in the submission step.
|
1156
|
*/
|
1157
|
function drupal_validate_form($form_id, &$form, &$form_state) {
|
1158
|
$validated_forms = &drupal_static(__FUNCTION__, array());
|
1159
|
|
1160
|
if (isset($validated_forms[$form_id]) && empty($form_state['must_validate'])) {
|
1161
|
return;
|
1162
|
}
|
1163
|
|
1164
|
// If the session token was set by drupal_prepare_form(), ensure that it
|
1165
|
// matches the current user's session.
|
1166
|
if (isset($form['#token'])) {
|
1167
|
if (!drupal_valid_token($form_state['values']['form_token'], $form['#token'])) {
|
1168
|
$path = current_path();
|
1169
|
$query = drupal_get_query_parameters();
|
1170
|
$url = url($path, array('query' => $query));
|
1171
|
|
1172
|
// Setting this error will cause the form to fail validation.
|
1173
|
form_set_error('form_token', t('The form has become outdated. Copy any unsaved work in the form below and then <a href="@link">reload this page</a>.', array('@link' => $url)));
|
1174
|
|
1175
|
// Stop here and don't run any further validation handlers, because they
|
1176
|
// could invoke non-safe operations which opens the door for CSRF
|
1177
|
// vulnerabilities.
|
1178
|
$validated_forms[$form_id] = TRUE;
|
1179
|
return;
|
1180
|
}
|
1181
|
}
|
1182
|
|
1183
|
_form_validate($form, $form_state, $form_id);
|
1184
|
$validated_forms[$form_id] = TRUE;
|
1185
|
|
1186
|
// If validation errors are limited then remove any non validated form values,
|
1187
|
// so that only values that passed validation are left for submit callbacks.
|
1188
|
if (isset($form_state['triggering_element']['#limit_validation_errors']) && $form_state['triggering_element']['#limit_validation_errors'] !== FALSE) {
|
1189
|
$values = array();
|
1190
|
foreach ($form_state['triggering_element']['#limit_validation_errors'] as $section) {
|
1191
|
// If the section exists within $form_state['values'], even if the value
|
1192
|
// is NULL, copy it to $values.
|
1193
|
$section_exists = NULL;
|
1194
|
$value = drupal_array_get_nested_value($form_state['values'], $section, $section_exists);
|
1195
|
if ($section_exists) {
|
1196
|
drupal_array_set_nested_value($values, $section, $value);
|
1197
|
}
|
1198
|
}
|
1199
|
// A button's #value does not require validation, so for convenience we
|
1200
|
// allow the value of the clicked button to be retained in its normal
|
1201
|
// $form_state['values'] locations, even if these locations are not included
|
1202
|
// in #limit_validation_errors.
|
1203
|
if (isset($form_state['triggering_element']['#button_type'])) {
|
1204
|
$button_value = $form_state['triggering_element']['#value'];
|
1205
|
|
1206
|
// Like all input controls, the button value may be in the location
|
1207
|
// dictated by #parents. If it is, copy it to $values, but do not override
|
1208
|
// what may already be in $values.
|
1209
|
$parents = $form_state['triggering_element']['#parents'];
|
1210
|
if (!drupal_array_nested_key_exists($values, $parents) && drupal_array_get_nested_value($form_state['values'], $parents) === $button_value) {
|
1211
|
drupal_array_set_nested_value($values, $parents, $button_value);
|
1212
|
}
|
1213
|
|
1214
|
// Additionally, form_builder() places the button value in
|
1215
|
// $form_state['values'][BUTTON_NAME]. If it's still there, after
|
1216
|
// validation handlers have run, copy it to $values, but do not override
|
1217
|
// what may already be in $values.
|
1218
|
$name = $form_state['triggering_element']['#name'];
|
1219
|
if (!isset($values[$name]) && isset($form_state['values'][$name]) && $form_state['values'][$name] === $button_value) {
|
1220
|
$values[$name] = $button_value;
|
1221
|
}
|
1222
|
}
|
1223
|
$form_state['values'] = $values;
|
1224
|
}
|
1225
|
}
|
1226
|
|
1227
|
/**
|
1228
|
* Redirects the user to a URL after a form has been processed.
|
1229
|
*
|
1230
|
* After a form is submitted and processed, normally the user should be
|
1231
|
* redirected to a new destination page. This function figures out what that
|
1232
|
* destination should be, based on the $form_state array and the 'destination'
|
1233
|
* query string in the request URL, and redirects the user there.
|
1234
|
*
|
1235
|
* Usually (for exceptions, see below) $form_state['redirect'] determines where
|
1236
|
* to redirect the user. This can be set either to a string (the path to
|
1237
|
* redirect to), or an array of arguments for drupal_goto(). If
|
1238
|
* $form_state['redirect'] is missing, the user is usually (again, see below for
|
1239
|
* exceptions) redirected back to the page they came from, where they should see
|
1240
|
* a fresh, unpopulated copy of the form.
|
1241
|
*
|
1242
|
* Here is an example of how to set up a form to redirect to the path 'node':
|
1243
|
* @code
|
1244
|
* $form_state['redirect'] = 'node';
|
1245
|
* @endcode
|
1246
|
* And here is an example of how to redirect to 'node/123?foo=bar#baz':
|
1247
|
* @code
|
1248
|
* $form_state['redirect'] = array(
|
1249
|
* 'node/123',
|
1250
|
* array(
|
1251
|
* 'query' => array(
|
1252
|
* 'foo' => 'bar',
|
1253
|
* ),
|
1254
|
* 'fragment' => 'baz',
|
1255
|
* ),
|
1256
|
* );
|
1257
|
* @endcode
|
1258
|
*
|
1259
|
* There are several exceptions to the "usual" behavior described above:
|
1260
|
* - If $form_state['programmed'] is TRUE, the form submission was usually
|
1261
|
* invoked via drupal_form_submit(), so any redirection would break the script
|
1262
|
* that invoked drupal_form_submit() and no redirection is done.
|
1263
|
* - If $form_state['rebuild'] is TRUE, the form is being rebuilt, and no
|
1264
|
* redirection is done.
|
1265
|
* - If $form_state['no_redirect'] is TRUE, redirection is disabled. This is
|
1266
|
* set, for instance, by ajax_get_form() to prevent redirection in Ajax
|
1267
|
* callbacks. $form_state['no_redirect'] should never be set or altered by
|
1268
|
* form builder functions or form validation/submit handlers.
|
1269
|
* - If $form_state['redirect'] is set to FALSE, redirection is disabled.
|
1270
|
* - If none of the above conditions has prevented redirection, then the
|
1271
|
* redirect is accomplished by calling drupal_goto(), passing in the value of
|
1272
|
* $form_state['redirect'] if it is set, or the current path if it is
|
1273
|
* not. drupal_goto() preferentially uses the value of $_GET['destination']
|
1274
|
* (the 'destination' URL query string) if it is present, so this will
|
1275
|
* override any values set by $form_state['redirect']. Note that during
|
1276
|
* installation, install_goto() is called in place of drupal_goto().
|
1277
|
*
|
1278
|
* @param $form_state
|
1279
|
* An associative array containing the current state of the form.
|
1280
|
*
|
1281
|
* @see drupal_process_form()
|
1282
|
* @see drupal_build_form()
|
1283
|
*/
|
1284
|
function drupal_redirect_form($form_state) {
|
1285
|
// Skip redirection for form submissions invoked via drupal_form_submit().
|
1286
|
if (!empty($form_state['programmed'])) {
|
1287
|
return;
|
1288
|
}
|
1289
|
// Skip redirection if rebuild is activated.
|
1290
|
if (!empty($form_state['rebuild'])) {
|
1291
|
return;
|
1292
|
}
|
1293
|
// Skip redirection if it was explicitly disallowed.
|
1294
|
if (!empty($form_state['no_redirect'])) {
|
1295
|
return;
|
1296
|
}
|
1297
|
// Only invoke drupal_goto() if redirect value was not set to FALSE.
|
1298
|
if (!isset($form_state['redirect']) || $form_state['redirect'] !== FALSE) {
|
1299
|
if (isset($form_state['redirect'])) {
|
1300
|
if (is_array($form_state['redirect'])) {
|
1301
|
call_user_func_array('drupal_goto', $form_state['redirect']);
|
1302
|
}
|
1303
|
else {
|
1304
|
// This function can be called from the installer, which guarantees
|
1305
|
// that $redirect will always be a string, so catch that case here
|
1306
|
// and use the appropriate redirect function.
|
1307
|
$function = drupal_installation_attempted() ? 'install_goto' : 'drupal_goto';
|
1308
|
$function($form_state['redirect']);
|
1309
|
}
|
1310
|
}
|
1311
|
drupal_goto(current_path(), array('query' => drupal_get_query_parameters()));
|
1312
|
}
|
1313
|
}
|
1314
|
|
1315
|
/**
|
1316
|
* Performs validation on form elements.
|
1317
|
*
|
1318
|
* First ensures required fields are completed, #maxlength is not exceeded, and
|
1319
|
* selected options were in the list of options given to the user. Then calls
|
1320
|
* user-defined validators.
|
1321
|
*
|
1322
|
* @param $elements
|
1323
|
* An associative array containing the structure of the form.
|
1324
|
* @param $form_state
|
1325
|
* A keyed array containing the current state of the form. The current
|
1326
|
* user-submitted data is stored in $form_state['values'], though
|
1327
|
* form validation functions are passed an explicit copy of the
|
1328
|
* values for the sake of simplicity. Validation handlers can also
|
1329
|
* $form_state to pass information on to submit handlers. For example:
|
1330
|
* $form_state['data_for_submission'] = $data;
|
1331
|
* This technique is useful when validation requires file parsing,
|
1332
|
* web service requests, or other expensive requests that should
|
1333
|
* not be repeated in the submission step.
|
1334
|
* @param $form_id
|
1335
|
* A unique string identifying the form for validation, submission,
|
1336
|
* theming, and hook_form_alter functions.
|
1337
|
*/
|
1338
|
function _form_validate(&$elements, &$form_state, $form_id = NULL) {
|
1339
|
// Also used in the installer, pre-database setup.
|
1340
|
$t = get_t();
|
1341
|
|
1342
|
// Recurse through all children.
|
1343
|
foreach (element_children($elements) as $key) {
|
1344
|
if (isset($elements[$key]) && $elements[$key]) {
|
1345
|
_form_validate($elements[$key], $form_state);
|
1346
|
}
|
1347
|
}
|
1348
|
|
1349
|
// Validate the current input.
|
1350
|
if (!isset($elements['#validated']) || !$elements['#validated']) {
|
1351
|
// The following errors are always shown.
|
1352
|
if (isset($elements['#needs_validation'])) {
|
1353
|
// Verify that the value is not longer than #maxlength.
|
1354
|
if (isset($elements['#maxlength']) && drupal_strlen($elements['#value']) > $elements['#maxlength']) {
|
1355
|
form_error($elements, $t('!name cannot be longer than %max characters but is currently %length characters long.', array('!name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title'], '%max' => $elements['#maxlength'], '%length' => drupal_strlen($elements['#value']))));
|
1356
|
}
|
1357
|
|
1358
|
if (isset($elements['#options']) && isset($elements['#value'])) {
|
1359
|
if ($elements['#type'] == 'select') {
|
1360
|
$options = form_options_flatten($elements['#options']);
|
1361
|
}
|
1362
|
else {
|
1363
|
$options = $elements['#options'];
|
1364
|
}
|
1365
|
if (is_array($elements['#value'])) {
|
1366
|
$value = in_array($elements['#type'], array('checkboxes', 'tableselect')) ? array_keys($elements['#value']) : $elements['#value'];
|
1367
|
foreach ($value as $v) {
|
1368
|
if (!isset($options[$v])) {
|
1369
|
form_error($elements, $t('An illegal choice has been detected. Please contact the site administrator.'));
|
1370
|
watchdog('form', 'Illegal choice %choice in !name element.', array('%choice' => $v, '!name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title']), WATCHDOG_ERROR);
|
1371
|
}
|
1372
|
}
|
1373
|
}
|
1374
|
// Non-multiple select fields always have a value in HTML. If the user
|
1375
|
// does not change the form, it will be the value of the first option.
|
1376
|
// Because of this, form validation for the field will almost always
|
1377
|
// pass, even if the user did not select anything. To work around this
|
1378
|
// browser behavior, required select fields without a #default_value get
|
1379
|
// an additional, first empty option. In case the submitted value is
|
1380
|
// identical to the empty option's value, we reset the element's value
|
1381
|
// to NULL to trigger the regular #required handling below.
|
1382
|
// @see form_process_select()
|
1383
|
elseif ($elements['#type'] == 'select' && !$elements['#multiple'] && $elements['#required'] && !isset($elements['#default_value']) && $elements['#value'] === $elements['#empty_value']) {
|
1384
|
$elements['#value'] = NULL;
|
1385
|
form_set_value($elements, NULL, $form_state);
|
1386
|
}
|
1387
|
elseif (!isset($options[$elements['#value']])) {
|
1388
|
form_error($elements, $t('An illegal choice has been detected. Please contact the site administrator.'));
|
1389
|
watchdog('form', 'Illegal choice %choice in %name element.', array('%choice' => $elements['#value'], '%name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title']), WATCHDOG_ERROR);
|
1390
|
}
|
1391
|
}
|
1392
|
}
|
1393
|
|
1394
|
// While this element is being validated, it may be desired that some calls
|
1395
|
// to form_set_error() be suppressed and not result in a form error, so
|
1396
|
// that a button that implements low-risk functionality (such as "Previous"
|
1397
|
// or "Add more") that doesn't require all user input to be valid can still
|
1398
|
// have its submit handlers triggered. The triggering element's
|
1399
|
// #limit_validation_errors property contains the information for which
|
1400
|
// errors are needed, and all other errors are to be suppressed. The
|
1401
|
// #limit_validation_errors property is ignored if submit handlers will run,
|
1402
|
// but the element doesn't have a #submit property, because it's too large a
|
1403
|
// security risk to have any invalid user input when executing form-level
|
1404
|
// submit handlers.
|
1405
|
if (isset($form_state['triggering_element']['#limit_validation_errors']) && ($form_state['triggering_element']['#limit_validation_errors'] !== FALSE) && !($form_state['submitted'] && !isset($form_state['triggering_element']['#submit']))) {
|
1406
|
form_set_error(NULL, '', $form_state['triggering_element']['#limit_validation_errors']);
|
1407
|
}
|
1408
|
// If submit handlers won't run (due to the submission having been triggered
|
1409
|
// by an element whose #executes_submit_callback property isn't TRUE), then
|
1410
|
// it's safe to suppress all validation errors, and we do so by default,
|
1411
|
// which is particularly useful during an Ajax submission triggered by a
|
1412
|
// non-button. An element can override this default by setting the
|
1413
|
// #limit_validation_errors property. For button element types,
|
1414
|
// #limit_validation_errors defaults to FALSE (via system_element_info()),
|
1415
|
// so that full validation is their default behavior.
|
1416
|
elseif (isset($form_state['triggering_element']) && !isset($form_state['triggering_element']['#limit_validation_errors']) && !$form_state['submitted']) {
|
1417
|
form_set_error(NULL, '', array());
|
1418
|
}
|
1419
|
// As an extra security measure, explicitly turn off error suppression if
|
1420
|
// one of the above conditions wasn't met. Since this is also done at the
|
1421
|
// end of this function, doing it here is only to handle the rare edge case
|
1422
|
// where a validate handler invokes form processing of another form.
|
1423
|
else {
|
1424
|
drupal_static_reset('form_set_error:limit_validation_errors');
|
1425
|
}
|
1426
|
|
1427
|
// Make sure a value is passed when the field is required.
|
1428
|
if (isset($elements['#needs_validation']) && $elements['#required']) {
|
1429
|
// A simple call to empty() will not cut it here as some fields, like
|
1430
|
// checkboxes, can return a valid value of '0'. Instead, check the
|
1431
|
// length if it's a string, and the item count if it's an array.
|
1432
|
// An unchecked checkbox has a #value of integer 0, different than string
|
1433
|
// '0', which could be a valid value.
|
1434
|
$is_empty_multiple = (!count($elements['#value']));
|
1435
|
$is_empty_string = (is_string($elements['#value']) && drupal_strlen(trim($elements['#value'])) == 0);
|
1436
|
$is_empty_value = ($elements['#value'] === 0);
|
1437
|
if ($is_empty_multiple || $is_empty_string || $is_empty_value) {
|
1438
|
// Although discouraged, a #title is not mandatory for form elements. In
|
1439
|
// case there is no #title, we cannot set a form error message.
|
1440
|
// Instead of setting no #title, form constructors are encouraged to set
|
1441
|
// #title_display to 'invisible' to improve accessibility.
|
1442
|
if (isset($elements['#title'])) {
|
1443
|
form_error($elements, $t('!name field is required.', array('!name' => $elements['#title'])));
|
1444
|
}
|
1445
|
else {
|
1446
|
form_error($elements);
|
1447
|
}
|
1448
|
}
|
1449
|
}
|
1450
|
|
1451
|
// Call user-defined form level validators.
|
1452
|
if (isset($form_id)) {
|
1453
|
form_execute_handlers('validate', $elements, $form_state);
|
1454
|
}
|
1455
|
// Call any element-specific validators. These must act on the element
|
1456
|
// #value data.
|
1457
|
elseif (isset($elements['#element_validate'])) {
|
1458
|
foreach ($elements['#element_validate'] as $function) {
|
1459
|
$function($elements, $form_state, $form_state['complete form']);
|
1460
|
}
|
1461
|
}
|
1462
|
$elements['#validated'] = TRUE;
|
1463
|
}
|
1464
|
|
1465
|
// Done validating this element, so turn off error suppression.
|
1466
|
// _form_validate() turns it on again when starting on the next element, if
|
1467
|
// it's still appropriate to do so.
|
1468
|
drupal_static_reset('form_set_error:limit_validation_errors');
|
1469
|
}
|
1470
|
|
1471
|
/**
|
1472
|
* Executes custom validation and submission handlers for a given form.
|
1473
|
*
|
1474
|
* Button-specific handlers are checked first. If none exist, the function
|
1475
|
* falls back to form-level handlers.
|
1476
|
*
|
1477
|
* @param $type
|
1478
|
* The type of handler to execute. 'validate' or 'submit' are the
|
1479
|
* defaults used by Form API.
|
1480
|
* @param $form
|
1481
|
* An associative array containing the structure of the form.
|
1482
|
* @param $form_state
|
1483
|
* A keyed array containing the current state of the form. If the user
|
1484
|
* submitted the form by clicking a button with custom handler functions
|
1485
|
* defined, those handlers will be stored here.
|
1486
|
*/
|
1487
|
function form_execute_handlers($type, &$form, &$form_state) {
|
1488
|
$return = FALSE;
|
1489
|
// If there was a button pressed, use its handlers.
|
1490
|
if (isset($form_state[$type . '_handlers'])) {
|
1491
|
$handlers = $form_state[$type . '_handlers'];
|
1492
|
}
|
1493
|
// Otherwise, check for a form-level handler.
|
1494
|
elseif (isset($form['#' . $type])) {
|
1495
|
$handlers = $form['#' . $type];
|
1496
|
}
|
1497
|
else {
|
1498
|
$handlers = array();
|
1499
|
}
|
1500
|
|
1501
|
foreach ($handlers as $function) {
|
1502
|
// Check if a previous _submit handler has set a batch, but make sure we
|
1503
|
// do not react to a batch that is already being processed (for instance
|
1504
|
// if a batch operation performs a drupal_form_submit()).
|
1505
|
if ($type == 'submit' && ($batch =& batch_get()) && !isset($batch['id'])) {
|
1506
|
// Some previous submit handler has set a batch. To ensure correct
|
1507
|
// execution order, store the call in a special 'control' batch set.
|
1508
|
// See _batch_next_set().
|
1509
|
$batch['sets'][] = array('form_submit' => $function);
|
1510
|
$batch['has_form_submits'] = TRUE;
|
1511
|
}
|
1512
|
else {
|
1513
|
$function($form, $form_state);
|
1514
|
}
|
1515
|
$return = TRUE;
|
1516
|
}
|
1517
|
return $return;
|
1518
|
}
|
1519
|
|
1520
|
/**
|
1521
|
* Files an error against a form element.
|
1522
|
*
|
1523
|
* When a validation error is detected, the validator calls form_set_error() to
|
1524
|
* indicate which element needs to be changed and provide an error message. This
|
1525
|
* causes the Form API to not execute the form submit handlers, and instead to
|
1526
|
* re-display the form to the user with the corresponding elements rendered with
|
1527
|
* an 'error' CSS class (shown as red by default).
|
1528
|
*
|
1529
|
* The standard form_set_error() behavior can be changed if a button provides
|
1530
|
* the #limit_validation_errors property. Multistep forms not wanting to
|
1531
|
* validate the whole form can set #limit_validation_errors on buttons to
|
1532
|
* limit validation errors to only certain elements. For example, pressing the
|
1533
|
* "Previous" button in a multistep form should not fire validation errors just
|
1534
|
* because the current step has invalid values. If #limit_validation_errors is
|
1535
|
* set on a clicked button, the button must also define a #submit property
|
1536
|
* (may be set to an empty array). Any #submit handlers will be executed even if
|
1537
|
* there is invalid input, so extreme care should be taken with respect to any
|
1538
|
* actions taken by them. This is typically not a problem with buttons like
|
1539
|
* "Previous" or "Add more" that do not invoke persistent storage of the
|
1540
|
* submitted form values. Do not use the #limit_validation_errors property on
|
1541
|
* buttons that trigger saving of form values to the database.
|
1542
|
*
|
1543
|
* The #limit_validation_errors property is a list of "sections" within
|
1544
|
* $form_state['values'] that must contain valid values. Each "section" is an
|
1545
|
* array with the ordered set of keys needed to reach that part of
|
1546
|
* $form_state['values'] (i.e., the #parents property of the element).
|
1547
|
*
|
1548
|
* Example 1: Allow the "Previous" button to function, regardless of whether any
|
1549
|
* user input is valid.
|
1550
|
*
|
1551
|
* @code
|
1552
|
* $form['actions']['previous'] = array(
|
1553
|
* '#type' => 'submit',
|
1554
|
* '#value' => t('Previous'),
|
1555
|
* '#limit_validation_errors' => array(), // No validation.
|
1556
|
* '#submit' => array('some_submit_function'), // #submit required.
|
1557
|
* );
|
1558
|
* @endcode
|
1559
|
*
|
1560
|
* Example 2: Require some, but not all, user input to be valid to process the
|
1561
|
* submission of a "Previous" button.
|
1562
|
*
|
1563
|
* @code
|
1564
|
* $form['actions']['previous'] = array(
|
1565
|
* '#type' => 'submit',
|
1566
|
* '#value' => t('Previous'),
|
1567
|
* '#limit_validation_errors' => array(
|
1568
|
* array('step1'), // Validate $form_state['values']['step1'].
|
1569
|
* array('foo', 'bar'), // Validate $form_state['values']['foo']['bar'].
|
1570
|
* ),
|
1571
|
* '#submit' => array('some_submit_function'), // #submit required.
|
1572
|
* );
|
1573
|
* @endcode
|
1574
|
*
|
1575
|
* This will require $form_state['values']['step1'] and everything within it
|
1576
|
* (for example, $form_state['values']['step1']['choice']) to be valid, so
|
1577
|
* calls to form_set_error('step1', $message) or
|
1578
|
* form_set_error('step1][choice', $message) will prevent the submit handlers
|
1579
|
* from running, and result in the error message being displayed to the user.
|
1580
|
* However, calls to form_set_error('step2', $message) and
|
1581
|
* form_set_error('step2][groupX][choiceY', $message) will be suppressed,
|
1582
|
* resulting in the message not being displayed to the user, and the submit
|
1583
|
* handlers will run despite $form_state['values']['step2'] and
|
1584
|
* $form_state['values']['step2']['groupX']['choiceY'] containing invalid
|
1585
|
* values. Errors for an invalid $form_state['values']['foo'] will be
|
1586
|
* suppressed, but errors flagging invalid values for
|
1587
|
* $form_state['values']['foo']['bar'] and everything within it will be
|
1588
|
* flagged and submission prevented.
|
1589
|
*
|
1590
|
* Partial form validation is implemented by suppressing errors rather than by
|
1591
|
* skipping the input processing and validation steps entirely, because some
|
1592
|
* forms have button-level submit handlers that call Drupal API functions that
|
1593
|
* assume that certain data exists within $form_state['values'], and while not
|
1594
|
* doing anything with that data that requires it to be valid, PHP errors
|
1595
|
* would be triggered if the input processing and validation steps were fully
|
1596
|
* skipped.
|
1597
|
*
|
1598
|
* @param $name
|
1599
|
* The name of the form element. If the #parents property of your form
|
1600
|
* element is array('foo', 'bar', 'baz') then you may set an error on 'foo'
|
1601
|
* or 'foo][bar][baz'. Setting an error on 'foo' sets an error for every
|
1602
|
* element where the #parents array starts with 'foo'.
|
1603
|
* @param $message
|
1604
|
* The error message to present to the user.
|
1605
|
* @param $limit_validation_errors
|
1606
|
* Internal use only. The #limit_validation_errors property of the clicked
|
1607
|
* button, if it exists.
|
1608
|
*
|
1609
|
* @return
|
1610
|
* Return value is for internal use only. To get a list of errors, use
|
1611
|
* form_get_errors() or form_get_error().
|
1612
|
*
|
1613
|
* @see http://drupal.org/node/370537
|
1614
|
* @see http://drupal.org/node/763376
|
1615
|
*/
|
1616
|
function form_set_error($name = NULL, $message = '', $limit_validation_errors = NULL) {
|
1617
|
$form = &drupal_static(__FUNCTION__, array());
|
1618
|
$sections = &drupal_static(__FUNCTION__ . ':limit_validation_errors');
|
1619
|
if (isset($limit_validation_errors)) {
|
1620
|
$sections = $limit_validation_errors;
|
1621
|
}
|
1622
|
|
1623
|
if (isset($name) && !isset($form[$name])) {
|
1624
|
$record = TRUE;
|
1625
|
if (isset($sections)) {
|
1626
|
// #limit_validation_errors is an array of "sections" within which user
|
1627
|
// input must be valid. If the element is within one of these sections,
|
1628
|
// the error must be recorded. Otherwise, it can be suppressed.
|
1629
|
// #limit_validation_errors can be an empty array, in which case all
|
1630
|
// errors are suppressed. For example, a "Previous" button might want its
|
1631
|
// submit action to be triggered even if none of the submitted values are
|
1632
|
// valid.
|
1633
|
$record = FALSE;
|
1634
|
foreach ($sections as $section) {
|
1635
|
// Exploding by '][' reconstructs the element's #parents. If the
|
1636
|
// reconstructed #parents begin with the same keys as the specified
|
1637
|
// section, then the element's values are within the part of
|
1638
|
// $form_state['values'] that the clicked button requires to be valid,
|
1639
|
// so errors for this element must be recorded. As the exploded array
|
1640
|
// will all be strings, we need to cast every value of the section
|
1641
|
// array to string.
|
1642
|
if (array_slice(explode('][', $name), 0, count($section)) === array_map('strval', $section)) {
|
1643
|
$record = TRUE;
|
1644
|
break;
|
1645
|
}
|
1646
|
}
|
1647
|
}
|
1648
|
if ($record) {
|
1649
|
$form[$name] = $message;
|
1650
|
if ($message) {
|
1651
|
drupal_set_message($message, 'error');
|
1652
|
}
|
1653
|
}
|
1654
|
}
|
1655
|
|
1656
|
return $form;
|
1657
|
}
|
1658
|
|
1659
|
/**
|
1660
|
* Clears all errors against all form elements made by form_set_error().
|
1661
|
*/
|
1662
|
function form_clear_error() {
|
1663
|
drupal_static_reset('form_set_error');
|
1664
|
}
|
1665
|
|
1666
|
/**
|
1667
|
* Returns an associative array of all errors.
|
1668
|
*/
|
1669
|
function form_get_errors() {
|
1670
|
$form = form_set_error();
|
1671
|
if (!empty($form)) {
|
1672
|
return $form;
|
1673
|
}
|
1674
|
}
|
1675
|
|
1676
|
/**
|
1677
|
* Returns the error message filed against the given form element.
|
1678
|
*
|
1679
|
* Form errors higher up in the form structure override deeper errors as well as
|
1680
|
* errors on the element itself.
|
1681
|
*/
|
1682
|
function form_get_error($element) {
|
1683
|
$form = form_set_error();
|
1684
|
$parents = array();
|
1685
|
foreach ($element['#parents'] as $parent) {
|
1686
|
$parents[] = $parent;
|
1687
|
$key = implode('][', $parents);
|
1688
|
if (isset($form[$key])) {
|
1689
|
return $form[$key];
|
1690
|
}
|
1691
|
}
|
1692
|
}
|
1693
|
|
1694
|
/**
|
1695
|
* Flags an element as having an error.
|
1696
|
*/
|
1697
|
function form_error(&$element, $message = '') {
|
1698
|
form_set_error(implode('][', $element['#parents']), $message);
|
1699
|
}
|
1700
|
|
1701
|
/**
|
1702
|
* Builds and processes all elements in the structured form array.
|
1703
|
*
|
1704
|
* Adds any required properties to each element, maps the incoming input data
|
1705
|
* to the proper elements, and executes any #process handlers attached to a
|
1706
|
* specific element.
|
1707
|
*
|
1708
|
* This is one of the three primary functions that recursively iterates a form
|
1709
|
* array. This one does it for completing the form building process. The other
|
1710
|
* two are _form_validate() (invoked via drupal_validate_form() and used to
|
1711
|
* invoke validation logic for each element) and drupal_render() (for rendering
|
1712
|
* each element). Each of these three pipelines provides ample opportunity for
|
1713
|
* modules to customize what happens. For example, during this function's life
|
1714
|
* cycle, the following functions get called for each element:
|
1715
|
* - $element['#value_callback']: A function that implements how user input is
|
1716
|
* mapped to an element's #value property. This defaults to a function named
|
1717
|
* 'form_type_TYPE_value' where TYPE is $element['#type'].
|
1718
|
* - $element['#process']: An array of functions called after user input has
|
1719
|
* been mapped to the element's #value property. These functions can be used
|
1720
|
* to dynamically add child elements: for example, for the 'date' element
|
1721
|
* type, one of the functions in this array is form_process_date(), which adds
|
1722
|
* the individual 'year', 'month', 'day', etc. child elements. These functions
|
1723
|
* can also be used to set additional properties or implement special logic
|
1724
|
* other than adding child elements: for example, for the 'fieldset' element
|
1725
|
* type, one of the functions in this array is form_process_fieldset(), which
|
1726
|
* adds the attributes and JavaScript needed to make the fieldset collapsible
|
1727
|
* if the #collapsible property is set. The #process functions are called in
|
1728
|
* preorder traversal, meaning they are called for the parent element first,
|
1729
|
* then for the child elements.
|
1730
|
* - $element['#after_build']: An array of functions called after form_builder()
|
1731
|
* is done with its processing of the element. These are called in postorder
|
1732
|
* traversal, meaning they are called for the child elements first, then for
|
1733
|
* the parent element.
|
1734
|
* There are similar properties containing callback functions invoked by
|
1735
|
* _form_validate() and drupal_render(), appropriate for those operations.
|
1736
|
*
|
1737
|
* Developers are strongly encouraged to integrate the functionality needed by
|
1738
|
* their form or module within one of these three pipelines, using the
|
1739
|
* appropriate callback property, rather than implementing their own recursive
|
1740
|
* traversal of a form array. This facilitates proper integration between
|
1741
|
* multiple modules. For example, module developers are familiar with the
|
1742
|
* relative order in which hook_form_alter() implementations and #process
|
1743
|
* functions run. A custom traversal function that affects the building of a
|
1744
|
* form is likely to not integrate with hook_form_alter() and #process in the
|
1745
|
* expected way. Also, deep recursion within PHP is both slow and memory
|
1746
|
* intensive, so it is best to minimize how often it's done.
|
1747
|
*
|
1748
|
* As stated above, each element's #process functions are executed after its
|
1749
|
* #value has been set. This enables those functions to execute conditional
|
1750
|
* logic based on the current value. However, all of form_builder() runs before
|
1751
|
* drupal_validate_form() is called, so during #process function execution, the
|
1752
|
* element's #value has not yet been validated, so any code that requires
|
1753
|
* validated values must reside within a submit handler.
|
1754
|
*
|
1755
|
* As a security measure, user input is used for an element's #value only if the
|
1756
|
* element exists within $form, is not disabled (as per the #disabled property),
|
1757
|
* and can be accessed (as per the #access property, except that forms submitted
|
1758
|
* using drupal_form_submit() bypass #access restrictions). When user input is
|
1759
|
* ignored due to #disabled and #access restrictions, the element's default
|
1760
|
* value is used.
|
1761
|
*
|
1762
|
* Because of the preorder traversal, where #process functions of an element run
|
1763
|
* before user input for its child elements is processed, and because of the
|
1764
|
* Form API security of user input processing with respect to #access and
|
1765
|
* #disabled described above, this generally means that #process functions
|
1766
|
* should not use an element's (unvalidated) #value to affect the #disabled or
|
1767
|
* #access of child elements. Use-cases where a developer may be tempted to
|
1768
|
* implement such conditional logic usually fall into one of two categories:
|
1769
|
* - Where user input from the current submission must affect the structure of a
|
1770
|
* form, including properties like #access and #disabled that affect how the
|
1771
|
* next submission needs to be processed, a multi-step workflow is needed.
|
1772
|
* This is most commonly implemented with a submit handler setting persistent
|
1773
|
* data within $form_state based on *validated* values in
|
1774
|
* $form_state['values'] and setting $form_state['rebuild']. The form building
|
1775
|
* functions must then be implemented to use the $form_state data to rebuild
|
1776
|
* the form with the structure appropriate for the new state.
|
1777
|
* - Where user input must affect the rendering of the form without affecting
|
1778
|
* its structure, the necessary conditional rendering logic should reside
|
1779
|
* within functions that run during the rendering phase (#pre_render, #theme,
|
1780
|
* #theme_wrappers, and #post_render).
|
1781
|
*
|
1782
|
* @param $form_id
|
1783
|
* A unique string identifying the form for validation, submission,
|
1784
|
* theming, and hook_form_alter functions.
|
1785
|
* @param $element
|
1786
|
* An associative array containing the structure of the current element.
|
1787
|
* @param $form_state
|
1788
|
* A keyed array containing the current state of the form. In this
|
1789
|
* context, it is used to accumulate information about which button
|
1790
|
* was clicked when the form was submitted, as well as the sanitized
|
1791
|
* $_POST data.
|
1792
|
*/
|
1793
|
function form_builder($form_id, &$element, &$form_state) {
|
1794
|
// Initialize as unprocessed.
|
1795
|
$element['#processed'] = FALSE;
|
1796
|
|
1797
|
// Use element defaults.
|
1798
|
if (isset($element['#type']) && empty($element['#defaults_loaded']) && ($info = element_info($element['#type']))) {
|
1799
|
// Overlay $info onto $element, retaining preexisting keys in $element.
|
1800
|
$element += $info;
|
1801
|
$element['#defaults_loaded'] = TRUE;
|
1802
|
}
|
1803
|
// Assign basic defaults common for all form elements.
|
1804
|
$element += array(
|
1805
|
'#required' => FALSE,
|
1806
|
'#attributes' => array(),
|
1807
|
'#title_display' => 'before',
|
1808
|
);
|
1809
|
|
1810
|
// Special handling if we're on the top level form element.
|
1811
|
if (isset($element['#type']) && $element['#type'] == 'form') {
|
1812
|
if (!empty($element['#https']) && variable_get('https', FALSE) &&
|
1813
|
!url_is_external($element['#action'])) {
|
1814
|
global $base_root;
|
1815
|
|
1816
|
// Not an external URL so ensure that it is secure.
|
1817
|
$element['#action'] = str_replace('http://', 'https://', $base_root) . $element['#action'];
|
1818
|
}
|
1819
|
|
1820
|
// Store a reference to the complete form in $form_state prior to building
|
1821
|
// the form. This allows advanced #process and #after_build callbacks to
|
1822
|
// perform changes elsewhere in the form.
|
1823
|
$form_state['complete form'] = &$element;
|
1824
|
|
1825
|
// Set a flag if we have a correct form submission. This is always TRUE for
|
1826
|
// programmed forms coming from drupal_form_submit(), or if the form_id coming
|
1827
|
// from the POST data is set and matches the current form_id.
|
1828
|
if ($form_state['programmed'] || (!empty($form_state['input']) && (isset($form_state['input']['form_id']) && ($form_state['input']['form_id'] == $form_id)))) {
|
1829
|
$form_state['process_input'] = TRUE;
|
1830
|
}
|
1831
|
else {
|
1832
|
$form_state['process_input'] = FALSE;
|
1833
|
}
|
1834
|
|
1835
|
// All form elements should have an #array_parents property.
|
1836
|
$element['#array_parents'] = array();
|
1837
|
}
|
1838
|
|
1839
|
if (!isset($element['#id'])) {
|
1840
|
$element['#id'] = drupal_html_id('edit-' . implode('-', $element['#parents']));
|
1841
|
}
|
1842
|
// Handle input elements.
|
1843
|
if (!empty($element['#input'])) {
|
1844
|
_form_builder_handle_input_element($form_id, $element, $form_state);
|
1845
|
}
|
1846
|
// Allow for elements to expand to multiple elements, e.g., radios,
|
1847
|
// checkboxes and files.
|
1848
|
if (isset($element['#process']) && !$element['#processed']) {
|
1849
|
foreach ($element['#process'] as $process) {
|
1850
|
$element = $process($element, $form_state, $form_state['complete form']);
|
1851
|
}
|
1852
|
$element['#processed'] = TRUE;
|
1853
|
}
|
1854
|
|
1855
|
// We start off assuming all form elements are in the correct order.
|
1856
|
$element['#sorted'] = TRUE;
|
1857
|
|
1858
|
// Recurse through all child elements.
|
1859
|
$count = 0;
|
1860
|
foreach (element_children($element) as $key) {
|
1861
|
// Prior to checking properties of child elements, their default properties
|
1862
|
// need to be loaded.
|
1863
|
if (isset($element[$key]['#type']) && empty($element[$key]['#defaults_loaded']) && ($info = element_info($element[$key]['#type']))) {
|
1864
|
$element[$key] += $info;
|
1865
|
$element[$key]['#defaults_loaded'] = TRUE;
|
1866
|
}
|
1867
|
|
1868
|
// Don't squash an existing tree value.
|
1869
|
if (!isset($element[$key]['#tree'])) {
|
1870
|
$element[$key]['#tree'] = $element['#tree'];
|
1871
|
}
|
1872
|
|
1873
|
// Deny access to child elements if parent is denied.
|
1874
|
if (isset($element['#access']) && !$element['#access']) {
|
1875
|
$element[$key]['#access'] = FALSE;
|
1876
|
}
|
1877
|
|
1878
|
// Make child elements inherit their parent's #disabled and #allow_focus
|
1879
|
// values unless they specify their own.
|
1880
|
foreach (array('#disabled', '#allow_focus') as $property) {
|
1881
|
if (isset($element[$property]) && !isset($element[$key][$property])) {
|
1882
|
$element[$key][$property] = $element[$property];
|
1883
|
}
|
1884
|
}
|
1885
|
|
1886
|
// Don't squash existing parents value.
|
1887
|
if (!isset($element[$key]['#parents'])) {
|
1888
|
// Check to see if a tree of child elements is present. If so,
|
1889
|
// continue down the tree if required.
|
1890
|
$element[$key]['#parents'] = $element[$key]['#tree'] && $element['#tree'] ? array_merge($element['#parents'], array($key)) : array($key);
|
1891
|
}
|
1892
|
// Ensure #array_parents follows the actual form structure.
|
1893
|
$array_parents = $element['#array_parents'];
|
1894
|
$array_parents[] = $key;
|
1895
|
$element[$key]['#array_parents'] = $array_parents;
|
1896
|
|
1897
|
// Assign a decimal placeholder weight to preserve original array order.
|
1898
|
if (!isset($element[$key]['#weight'])) {
|
1899
|
$element[$key]['#weight'] = $count/1000;
|
1900
|
}
|
1901
|
else {
|
1902
|
// If one of the child elements has a weight then we will need to sort
|
1903
|
// later.
|
1904
|
unset($element['#sorted']);
|
1905
|
}
|
1906
|
$element[$key] = form_builder($form_id, $element[$key], $form_state);
|
1907
|
$count++;
|
1908
|
}
|
1909
|
|
1910
|
// The #after_build flag allows any piece of a form to be altered
|
1911
|
// after normal input parsing has been completed.
|
1912
|
if (isset($element['#after_build']) && !isset($element['#after_build_done'])) {
|
1913
|
foreach ($element['#after_build'] as $function) {
|
1914
|
$element = $function($element, $form_state);
|
1915
|
}
|
1916
|
$element['#after_build_done'] = TRUE;
|
1917
|
}
|
1918
|
|
1919
|
// If there is a file element, we need to flip a flag so later the
|
1920
|
// form encoding can be set.
|
1921
|
if (isset($element['#type']) && $element['#type'] == 'file') {
|
1922
|
$form_state['has_file_element'] = TRUE;
|
1923
|
}
|
1924
|
|
1925
|
// Final tasks for the form element after form_builder() has run for all other
|
1926
|
// elements.
|
1927
|
if (isset($element['#type']) && $element['#type'] == 'form') {
|
1928
|
// If there is a file element, we set the form encoding.
|
1929
|
if (isset($form_state['has_file_element'])) {
|
1930
|
$element['#attributes']['enctype'] = 'multipart/form-data';
|
1931
|
}
|
1932
|
|
1933
|
// If a form contains a single textfield, and the ENTER key is pressed
|
1934
|
// within it, Internet Explorer submits the form with no POST data
|
1935
|
// identifying any submit button. Other browsers submit POST data as though
|
1936
|
// the user clicked the first button. Therefore, to be as consistent as we
|
1937
|
// can be across browsers, if no 'triggering_element' has been identified
|
1938
|
// yet, default it to the first button.
|
1939
|
if (!$form_state['programmed'] && !isset($form_state['triggering_element']) && !empty($form_state['buttons'])) {
|
1940
|
$form_state['triggering_element'] = $form_state['buttons'][0];
|
1941
|
}
|
1942
|
|
1943
|
// If the triggering element specifies "button-level" validation and submit
|
1944
|
// handlers to run instead of the default form-level ones, then add those to
|
1945
|
// the form state.
|
1946
|
foreach (array('validate', 'submit') as $type) {
|
1947
|
if (isset($form_state['triggering_element']['#' . $type])) {
|
1948
|
$form_state[$type . '_handlers'] = $form_state['triggering_element']['#' . $type];
|
1949
|
}
|
1950
|
}
|
1951
|
|
1952
|
// If the triggering element executes submit handlers, then set the form
|
1953
|
// state key that's needed for those handlers to run.
|
1954
|
if (!empty($form_state['triggering_element']['#executes_submit_callback'])) {
|
1955
|
$form_state['submitted'] = TRUE;
|
1956
|
}
|
1957
|
|
1958
|
// Special processing if the triggering element is a button.
|
1959
|
if (isset($form_state['triggering_element']['#button_type'])) {
|
1960
|
// Because there are several ways in which the triggering element could
|
1961
|
// have been determined (including from input variables set by JavaScript
|
1962
|
// or fallback behavior implemented for IE), and because buttons often
|
1963
|
// have their #name property not derived from their #parents property, we
|
1964
|
// can't assume that input processing that's happened up until here has
|
1965
|
// resulted in $form_state['values'][BUTTON_NAME] being set. But it's
|
1966
|
// common for forms to have several buttons named 'op' and switch on
|
1967
|
// $form_state['values']['op'] during submit handler execution.
|
1968
|
$form_state['values'][$form_state['triggering_element']['#name']] = $form_state['triggering_element']['#value'];
|
1969
|
|
1970
|
// @todo Legacy support. Remove in Drupal 8.
|
1971
|
$form_state['clicked_button'] = $form_state['triggering_element'];
|
1972
|
}
|
1973
|
}
|
1974
|
return $element;
|
1975
|
}
|
1976
|
|
1977
|
/**
|
1978
|
* Adds the #name and #value properties of an input element before rendering.
|
1979
|
*/
|
1980
|
function _form_builder_handle_input_element($form_id, &$element, &$form_state) {
|
1981
|
if (!isset($element['#name'])) {
|
1982
|
$name = array_shift($element['#parents']);
|
1983
|
$element['#name'] = $name;
|
1984
|
if ($element['#type'] == 'file') {
|
1985
|
// To make it easier to handle $_FILES in file.inc, we place all
|
1986
|
// file fields in the 'files' array. Also, we do not support
|
1987
|
// nested file names.
|
1988
|
$element['#name'] = 'files[' . $element['#name'] . ']';
|
1989
|
}
|
1990
|
elseif (count($element['#parents'])) {
|
1991
|
$element['#name'] .= '[' . implode('][', $element['#parents']) . ']';
|
1992
|
}
|
1993
|
array_unshift($element['#parents'], $name);
|
1994
|
}
|
1995
|
|
1996
|
// Setting #disabled to TRUE results in user input being ignored, regardless
|
1997
|
// of how the element is themed or whether JavaScript is used to change the
|
1998
|
// control's attributes. However, it's good UI to let the user know that input
|
1999
|
// is not wanted for the control. HTML supports two attributes for this:
|
2000
|
// http://www.w3.org/TR/html401/interact/forms.html#h-17.12. If a form wants
|
2001
|
// to start a control off with one of these attributes for UI purposes only,
|
2002
|
// but still allow input to be processed if it's sumitted, it can set the
|
2003
|
// desired attribute in #attributes directly rather than using #disabled.
|
2004
|
// However, developers should think carefully about the accessibility
|
2005
|
// implications of doing so: if the form expects input to be enterable under
|
2006
|
// some condition triggered by JavaScript, how would someone who has
|
2007
|
// JavaScript disabled trigger that condition? Instead, developers should
|
2008
|
// consider whether a multi-step form would be more appropriate (#disabled can
|
2009
|
// be changed from step to step). If one still decides to use JavaScript to
|
2010
|
// affect when a control is enabled, then it is best for accessibility for the
|
2011
|
// control to be enabled in the HTML, and disabled by JavaScript on document
|
2012
|
// ready.
|
2013
|
if (!empty($element['#disabled'])) {
|
2014
|
if (!empty($element['#allow_focus'])) {
|
2015
|
$element['#attributes']['readonly'] = 'readonly';
|
2016
|
}
|
2017
|
else {
|
2018
|
$element['#attributes']['disabled'] = 'disabled';
|
2019
|
}
|
2020
|
}
|
2021
|
|
2022
|
// With JavaScript or other easy hacking, input can be submitted even for
|
2023
|
// elements with #access=FALSE or #disabled=TRUE. For security, these must
|
2024
|
// not be processed. Forms that set #disabled=TRUE on an element do not
|
2025
|
// expect input for the element, and even forms submitted with
|
2026
|
// drupal_form_submit() must not be able to get around this. Forms that set
|
2027
|
// #access=FALSE on an element usually allow access for some users, so forms
|
2028
|
// submitted with drupal_form_submit() may bypass access restriction and be
|
2029
|
// treated as high-privilege users instead.
|
2030
|
$process_input = empty($element['#disabled']) && (($form_state['programmed'] && $form_state['programmed_bypass_access_check']) || ($form_state['process_input'] && (!isset($element['#access']) || $element['#access'])));
|
2031
|
|
2032
|
// Set the element's #value property.
|
2033
|
if (!isset($element['#value']) && !array_key_exists('#value', $element)) {
|
2034
|
$value_callback = !empty($element['#value_callback']) ? $element['#value_callback'] : 'form_type_' . $element['#type'] . '_value';
|
2035
|
if ($process_input) {
|
2036
|
// Get the input for the current element. NULL values in the input need to
|
2037
|
// be explicitly distinguished from missing input. (see below)
|
2038
|
$input_exists = NULL;
|
2039
|
$input = drupal_array_get_nested_value($form_state['input'], $element['#parents'], $input_exists);
|
2040
|
// For browser-submitted forms, the submitted values do not contain values
|
2041
|
// for certain elements (empty multiple select, unchecked checkbox).
|
2042
|
// During initial form processing, we add explicit NULL values for such
|
2043
|
// elements in $form_state['input']. When rebuilding the form, we can
|
2044
|
// distinguish elements having NULL input from elements that were not part
|
2045
|
// of the initially submitted form and can therefore use default values
|
2046
|
// for the latter, if required. Programmatically submitted forms can
|
2047
|
// submit explicit NULL values when calling drupal_form_submit(), so we do
|
2048
|
// not modify $form_state['input'] for them.
|
2049
|
if (!$input_exists && !$form_state['rebuild'] && !$form_state['programmed']) {
|
2050
|
// Add the necessary parent keys to $form_state['input'] and sets the
|
2051
|
// element's input value to NULL.
|
2052
|
drupal_array_set_nested_value($form_state['input'], $element['#parents'], NULL);
|
2053
|
$input_exists = TRUE;
|
2054
|
}
|
2055
|
// If we have input for the current element, assign it to the #value
|
2056
|
// property, optionally filtered through $value_callback.
|
2057
|
if ($input_exists) {
|
2058
|
if (function_exists($value_callback)) {
|
2059
|
$element['#value'] = $value_callback($element, $input, $form_state);
|
2060
|
}
|
2061
|
if (!isset($element['#value']) && isset($input)) {
|
2062
|
$element['#value'] = $input;
|
2063
|
}
|
2064
|
}
|
2065
|
// Mark all posted values for validation.
|
2066
|
if (isset($element['#value']) || (!empty($element['#required']))) {
|
2067
|
$element['#needs_validation'] = TRUE;
|
2068
|
}
|
2069
|
}
|
2070
|
// Load defaults.
|
2071
|
if (!isset($element['#value'])) {
|
2072
|
// Call #type_value without a second argument to request default_value handling.
|
2073
|
if (function_exists($value_callback)) {
|
2074
|
$element['#value'] = $value_callback($element, FALSE, $form_state);
|
2075
|
}
|
2076
|
// Final catch. If we haven't set a value yet, use the explicit default value.
|
2077
|
// Avoid image buttons (which come with garbage value), so we only get value
|
2078
|
// for the button actually clicked.
|
2079
|
if (!isset($element['#value']) && empty($element['#has_garbage_value'])) {
|
2080
|
$element['#value'] = isset($element['#default_value']) ? $element['#default_value'] : '';
|
2081
|
}
|
2082
|
}
|
2083
|
}
|
2084
|
|
2085
|
// Determine which element (if any) triggered the submission of the form and
|
2086
|
// keep track of all the clickable buttons in the form for
|
2087
|
// form_state_values_clean(). Enforce the same input processing restrictions
|
2088
|
// as above.
|
2089
|
if ($process_input) {
|
2090
|
// Detect if the element triggered the submission via Ajax.
|
2091
|
if (_form_element_triggered_scripted_submission($element, $form_state)) {
|
2092
|
$form_state['triggering_element'] = $element;
|
2093
|
}
|
2094
|
|
2095
|
// If the form was submitted by the browser rather than via Ajax, then it
|
2096
|
// can only have been triggered by a button, and we need to determine which
|
2097
|
// button within the constraints of how browsers provide this information.
|
2098
|
if (isset($element['#button_type'])) {
|
2099
|
// All buttons in the form need to be tracked for
|
2100
|
// form_state_values_clean() and for the form_builder() code that handles
|
2101
|
// a form submission containing no button information in $_POST.
|
2102
|
$form_state['buttons'][] = $element;
|
2103
|
if (_form_button_was_clicked($element, $form_state)) {
|
2104
|
$form_state['triggering_element'] = $element;
|
2105
|
}
|
2106
|
}
|
2107
|
}
|
2108
|
|
2109
|
// Set the element's value in $form_state['values'], but only, if its key
|
2110
|
// does not exist yet (a #value_callback may have already populated it).
|
2111
|
if (!drupal_array_nested_key_exists($form_state['values'], $element['#parents'])) {
|
2112
|
form_set_value($element, $element['#value'], $form_state);
|
2113
|
}
|
2114
|
}
|
2115
|
|
2116
|
/**
|
2117
|
* Detects if an element triggered the form submission via Ajax.
|
2118
|
*
|
2119
|
* This detects button or non-button controls that trigger a form submission via
|
2120
|
* Ajax or some other scriptable environment. These environments can set the
|
2121
|
* special input key '_triggering_element_name' to identify the triggering
|
2122
|
* element. If the name alone doesn't identify the element uniquely, the input
|
2123
|
* key '_triggering_element_value' may also be set to require a match on element
|
2124
|
* value. An example where this is needed is if there are several buttons all
|
2125
|
* named 'op', and only differing in their value.
|
2126
|
*/
|
2127
|
function _form_element_triggered_scripted_submission($element, &$form_state) {
|
2128
|
if (!empty($form_state['input']['_triggering_element_name']) && $element['#name'] == $form_state['input']['_triggering_element_name']) {
|
2129
|
if (empty($form_state['input']['_triggering_element_value']) || $form_state['input']['_triggering_element_value'] == $element['#value']) {
|
2130
|
return TRUE;
|
2131
|
}
|
2132
|
}
|
2133
|
return FALSE;
|
2134
|
}
|
2135
|
|
2136
|
/**
|
2137
|
* Determines if a given button triggered the form submission.
|
2138
|
*
|
2139
|
* This detects button controls that trigger a form submission by being clicked
|
2140
|
* and having the click processed by the browser rather than being captured by
|
2141
|
* JavaScript. Essentially, it detects if the button's name and value are part
|
2142
|
* of the POST data, but with extra code to deal with the convoluted way in
|
2143
|
* which browsers submit data for image button clicks.
|
2144
|
*
|
2145
|
* This does not detect button clicks processed by Ajax (that is done in
|
2146
|
* _form_element_triggered_scripted_submission()) and it does not detect form
|
2147
|
* submissions from Internet Explorer in response to an ENTER key pressed in a
|
2148
|
* textfield (form_builder() has extra code for that).
|
2149
|
*
|
2150
|
* Because this function contains only part of the logic needed to determine
|
2151
|
* $form_state['triggering_element'], it should not be called from anywhere
|
2152
|
* other than within the Form API. Form validation and submit handlers needing
|
2153
|
* to know which button was clicked should get that information from
|
2154
|
* $form_state['triggering_element'].
|
2155
|
*/
|
2156
|
function _form_button_was_clicked($element, &$form_state) {
|
2157
|
// First detect normal 'vanilla' button clicks. Traditionally, all
|
2158
|
// standard buttons on a form share the same name (usually 'op'),
|
2159
|
// and the specific return value is used to determine which was
|
2160
|
// clicked. This ONLY works as long as $form['#name'] puts the
|
2161
|
// value at the top level of the tree of $_POST data.
|
2162
|
if (isset($form_state['input'][$element['#name']]) && $form_state['input'][$element['#name']] == $element['#value']) {
|
2163
|
return TRUE;
|
2164
|
}
|
2165
|
// When image buttons are clicked, browsers do NOT pass the form element
|
2166
|
// value in $_POST. Instead they pass an integer representing the
|
2167
|
// coordinates of the click on the button image. This means that image
|
2168
|
// buttons MUST have unique $form['#name'] values, but the details of
|
2169
|
// their $_POST data should be ignored.
|
2170
|
elseif (!empty($element['#has_garbage_value']) && isset($element['#value']) && $element['#value'] !== '') {
|
2171
|
return TRUE;
|
2172
|
}
|
2173
|
return FALSE;
|
2174
|
}
|
2175
|
|
2176
|
/**
|
2177
|
* Removes internal Form API elements and buttons from submitted form values.
|
2178
|
*
|
2179
|
* This function can be used when a module wants to store all submitted form
|
2180
|
* values, for example, by serializing them into a single database column. In
|
2181
|
* such cases, all internal Form API values and all form button elements should
|
2182
|
* not be contained, and this function allows to remove them before the module
|
2183
|
* proceeds to storage. Next to button elements, the following internal values
|
2184
|
* are removed:
|
2185
|
* - form_id
|
2186
|
* - form_token
|
2187
|
* - form_build_id
|
2188
|
* - op
|
2189
|
*
|
2190
|
* @param $form_state
|
2191
|
* A keyed array containing the current state of the form, including
|
2192
|
* submitted form values; altered by reference.
|
2193
|
*/
|
2194
|
function form_state_values_clean(&$form_state) {
|
2195
|
// Remove internal Form API values.
|
2196
|
unset($form_state['values']['form_id'], $form_state['values']['form_token'], $form_state['values']['form_build_id'], $form_state['values']['op']);
|
2197
|
|
2198
|
// Remove button values.
|
2199
|
// form_builder() collects all button elements in a form. We remove the button
|
2200
|
// value separately for each button element.
|
2201
|
foreach ($form_state['buttons'] as $button) {
|
2202
|
// Remove this button's value from the submitted form values by finding
|
2203
|
// the value corresponding to this button.
|
2204
|
// We iterate over the #parents of this button and move a reference to
|
2205
|
// each parent in $form_state['values']. For example, if #parents is:
|
2206
|
// array('foo', 'bar', 'baz')
|
2207
|
// then the corresponding $form_state['values'] part will look like this:
|
2208
|
// array(
|
2209
|
// 'foo' => array(
|
2210
|
// 'bar' => array(
|
2211
|
// 'baz' => 'button_value',
|
2212
|
// ),
|
2213
|
// ),
|
2214
|
// )
|
2215
|
// We start by (re)moving 'baz' to $last_parent, so we are able unset it
|
2216
|
// at the end of the iteration. Initially, $values will contain a
|
2217
|
// reference to $form_state['values'], but in the iteration we move the
|
2218
|
// reference to $form_state['values']['foo'], and finally to
|
2219
|
// $form_state['values']['foo']['bar'], which is the level where we can
|
2220
|
// unset 'baz' (that is stored in $last_parent).
|
2221
|
$parents = $button['#parents'];
|
2222
|
$last_parent = array_pop($parents);
|
2223
|
$key_exists = NULL;
|
2224
|
$values = &drupal_array_get_nested_value($form_state['values'], $parents, $key_exists);
|
2225
|
if ($key_exists && is_array($values)) {
|
2226
|
unset($values[$last_parent]);
|
2227
|
}
|
2228
|
}
|
2229
|
}
|
2230
|
|
2231
|
/**
|
2232
|
* Determines the value for an image button form element.
|
2233
|
*
|
2234
|
* @param $form
|
2235
|
* The form element whose value is being populated.
|
2236
|
* @param $input
|
2237
|
* The incoming input to populate the form element. If this is FALSE,
|
2238
|
* the element's default value should be returned.
|
2239
|
* @param $form_state
|
2240
|
* A keyed array containing the current state of the form.
|
2241
|
*
|
2242
|
* @return
|
2243
|
* The data that will appear in the $form_state['values'] collection
|
2244
|
* for this element. Return nothing to use the default.
|
2245
|
*/
|
2246
|
function form_type_image_button_value($form, $input, $form_state) {
|
2247
|
if ($input !== FALSE) {
|
2248
|
if (!empty($input)) {
|
2249
|
// If we're dealing with Mozilla or Opera, we're lucky. It will
|
2250
|
// return a proper value, and we can get on with things.
|
2251
|
return $form['#return_value'];
|
2252
|
}
|
2253
|
else {
|
2254
|
// Unfortunately, in IE we never get back a proper value for THIS
|
2255
|
// form element. Instead, we get back two split values: one for the
|
2256
|
// X and one for the Y coordinates on which the user clicked the
|
2257
|
// button. We'll find this element in the #post data, and search
|
2258
|
// in the same spot for its name, with '_x'.
|
2259
|
$input = $form_state['input'];
|
2260
|
foreach (explode('[', $form['#name']) as $element_name) {
|
2261
|
// chop off the ] that may exist.
|
2262
|
if (substr($element_name, -1) == ']') {
|
2263
|
$element_name = substr($element_name, 0, -1);
|
2264
|
}
|
2265
|
|
2266
|
if (!isset($input[$element_name])) {
|
2267
|
if (isset($input[$element_name . '_x'])) {
|
2268
|
return $form['#return_value'];
|
2269
|
}
|
2270
|
return NULL;
|
2271
|
}
|
2272
|
$input = $input[$element_name];
|
2273
|
}
|
2274
|
return $form['#return_value'];
|
2275
|
}
|
2276
|
}
|
2277
|
}
|
2278
|
|
2279
|
/**
|
2280
|
* Determines the value for a checkbox form element.
|
2281
|
*
|
2282
|
* @param $form
|
2283
|
* The form element whose value is being populated.
|
2284
|
* @param $input
|
2285
|
* The incoming input to populate the form element. If this is FALSE,
|
2286
|
* the element's default value should be returned.
|
2287
|
*
|
2288
|
* @return
|
2289
|
* The data that will appear in the $element_state['values'] collection
|
2290
|
* for this element. Return nothing to use the default.
|
2291
|
*/
|
2292
|
function form_type_checkbox_value($element, $input = FALSE) {
|
2293
|
if ($input === FALSE) {
|
2294
|
// Use #default_value as the default value of a checkbox, except change
|
2295
|
// NULL to 0, because _form_builder_handle_input_element() would otherwise
|
2296
|
// replace NULL with empty string, but an empty string is a potentially
|
2297
|
// valid value for a checked checkbox.
|
2298
|
return isset($element['#default_value']) ? $element['#default_value'] : 0;
|
2299
|
}
|
2300
|
else {
|
2301
|
// Checked checkboxes are submitted with a value (possibly '0' or ''):
|
2302
|
// http://www.w3.org/TR/html401/interact/forms.html#successful-controls.
|
2303
|
// For checked checkboxes, browsers submit the string version of
|
2304
|
// #return_value, but we return the original #return_value. For unchecked
|
2305
|
// checkboxes, browsers submit nothing at all, but
|
2306
|
// _form_builder_handle_input_element() detects this, and calls this
|
2307
|
// function with $input=NULL. Returning NULL from a value callback means to
|
2308
|
// use the default value, which is not what is wanted when an unchecked
|
2309
|
// checkbox is submitted, so we use integer 0 as the value indicating an
|
2310
|
// unchecked checkbox. Therefore, modules must not use integer 0 as a
|
2311
|
// #return_value, as doing so results in the checkbox always being treated
|
2312
|
// as unchecked. The string '0' is allowed for #return_value. The most
|
2313
|
// common use-case for setting #return_value to either 0 or '0' is for the
|
2314
|
// first option within a 0-indexed array of checkboxes, and for this,
|
2315
|
// form_process_checkboxes() uses the string rather than the integer.
|
2316
|
return isset($input) ? $element['#return_value'] : 0;
|
2317
|
}
|
2318
|
}
|
2319
|
|
2320
|
/**
|
2321
|
* Determines the value for a checkboxes form element.
|
2322
|
*
|
2323
|
* @param $element
|
2324
|
* The form element whose value is being populated.
|
2325
|
* @param $input
|
2326
|
* The incoming input to populate the form element. If this is FALSE,
|
2327
|
* the element's default value should be returned.
|
2328
|
*
|
2329
|
* @return
|
2330
|
* The data that will appear in the $element_state['values'] collection
|
2331
|
* for this element. Return nothing to use the default.
|
2332
|
*/
|
2333
|
function form_type_checkboxes_value($element, $input = FALSE) {
|
2334
|
if ($input === FALSE) {
|
2335
|
$value = array();
|
2336
|
$element += array('#default_value' => array());
|
2337
|
foreach ($element['#default_value'] as $key) {
|
2338
|
$value[$key] = $key;
|
2339
|
}
|
2340
|
return $value;
|
2341
|
}
|
2342
|
elseif (is_array($input)) {
|
2343
|
// Programmatic form submissions use NULL to indicate that a checkbox
|
2344
|
// should be unchecked; see drupal_form_submit(). We therefore remove all
|
2345
|
// NULL elements from the array before constructing the return value, to
|
2346
|
// simulate the behavior of web browsers (which do not send unchecked
|
2347
|
// checkboxes to the server at all). This will not affect non-programmatic
|
2348
|
// form submissions, since all values in $_POST are strings.
|
2349
|
foreach ($input as $key => $value) {
|
2350
|
if (!isset($value)) {
|
2351
|
unset($input[$key]);
|
2352
|
}
|
2353
|
}
|
2354
|
return drupal_map_assoc($input);
|
2355
|
}
|
2356
|
else {
|
2357
|
return array();
|
2358
|
}
|
2359
|
}
|
2360
|
|
2361
|
/**
|
2362
|
* Determines the value for a tableselect form element.
|
2363
|
*
|
2364
|
* @param $element
|
2365
|
* The form element whose value is being populated.
|
2366
|
* @param $input
|
2367
|
* The incoming input to populate the form element. If this is FALSE,
|
2368
|
* the element's default value should be returned.
|
2369
|
*
|
2370
|
* @return
|
2371
|
* The data that will appear in the $element_state['values'] collection
|
2372
|
* for this element. Return nothing to use the default.
|
2373
|
*/
|
2374
|
function form_type_tableselect_value($element, $input = FALSE) {
|
2375
|
// If $element['#multiple'] == FALSE, then radio buttons are displayed and
|
2376
|
// the default value handling is used.
|
2377
|
if (isset($element['#multiple']) && $element['#multiple']) {
|
2378
|
// Checkboxes are being displayed with the default value coming from the
|
2379
|
// keys of the #default_value property. This differs from the checkboxes
|
2380
|
// element which uses the array values.
|
2381
|
if ($input === FALSE) {
|
2382
|
$value = array();
|
2383
|
$element += array('#default_value' => array());
|
2384
|
foreach ($element['#default_value'] as $key => $flag) {
|
2385
|
if ($flag) {
|
2386
|
$value[$key] = $key;
|
2387
|
}
|
2388
|
}
|
2389
|
return $value;
|
2390
|
}
|
2391
|
else {
|
2392
|
return is_array($input) ? drupal_map_assoc($input) : array();
|
2393
|
}
|
2394
|
}
|
2395
|
}
|
2396
|
|
2397
|
/**
|
2398
|
* Form value callback: Determines the value for a #type radios form element.
|
2399
|
*
|
2400
|
* @param $element
|
2401
|
* The form element whose value is being populated.
|
2402
|
* @param $input
|
2403
|
* (optional) The incoming input to populate the form element. If FALSE, the
|
2404
|
* element's default value is returned. Defaults to FALSE.
|
2405
|
*
|
2406
|
* @return
|
2407
|
* The data that will appear in the $element_state['values'] collection for
|
2408
|
* this element.
|
2409
|
*/
|
2410
|
function form_type_radios_value(&$element, $input = FALSE) {
|
2411
|
if ($input !== FALSE) {
|
2412
|
// When there's user input (including NULL), return it as the value.
|
2413
|
// However, if NULL is submitted, _form_builder_handle_input_element() will
|
2414
|
// apply the default value, and we want that validated against #options
|
2415
|
// unless it's empty. (An empty #default_value, such as NULL or FALSE, can
|
2416
|
// be used to indicate that no radio button is selected by default.)
|
2417
|
if (!isset($input) && !empty($element['#default_value'])) {
|
2418
|
$element['#needs_validation'] = TRUE;
|
2419
|
}
|
2420
|
return $input;
|
2421
|
}
|
2422
|
else {
|
2423
|
// For default value handling, simply return #default_value. Additionally,
|
2424
|
// for a NULL default value, set #has_garbage_value to prevent
|
2425
|
// _form_builder_handle_input_element() converting the NULL to an empty
|
2426
|
// string, so that code can distinguish between nothing selected and the
|
2427
|
// selection of a radio button whose value is an empty string.
|
2428
|
$value = isset($element['#default_value']) ? $element['#default_value'] : NULL;
|
2429
|
if (!isset($value)) {
|
2430
|
$element['#has_garbage_value'] = TRUE;
|
2431
|
}
|
2432
|
return $value;
|
2433
|
}
|
2434
|
}
|
2435
|
|
2436
|
/**
|
2437
|
* Determines the value for a password_confirm form element.
|
2438
|
*
|
2439
|
* @param $element
|
2440
|
* The form element whose value is being populated.
|
2441
|
* @param $input
|
2442
|
* The incoming input to populate the form element. If this is FALSE,
|
2443
|
* the element's default value should be returned.
|
2444
|
*
|
2445
|
* @return
|
2446
|
* The data that will appear in the $element_state['values'] collection
|
2447
|
* for this element. Return nothing to use the default.
|
2448
|
*/
|
2449
|
function form_type_password_confirm_value($element, $input = FALSE) {
|
2450
|
if ($input === FALSE) {
|
2451
|
$element += array('#default_value' => array());
|
2452
|
return $element['#default_value'] + array('pass1' => '', 'pass2' => '');
|
2453
|
}
|
2454
|
}
|
2455
|
|
2456
|
/**
|
2457
|
* Determines the value for a select form element.
|
2458
|
*
|
2459
|
* @param $element
|
2460
|
* The form element whose value is being populated.
|
2461
|
* @param $input
|
2462
|
* The incoming input to populate the form element. If this is FALSE,
|
2463
|
* the element's default value should be returned.
|
2464
|
*
|
2465
|
* @return
|
2466
|
* The data that will appear in the $element_state['values'] collection
|
2467
|
* for this element. Return nothing to use the default.
|
2468
|
*/
|
2469
|
function form_type_select_value($element, $input = FALSE) {
|
2470
|
if ($input !== FALSE) {
|
2471
|
if (isset($element['#multiple']) && $element['#multiple']) {
|
2472
|
// If an enabled multi-select submits NULL, it means all items are
|
2473
|
// unselected. A disabled multi-select always submits NULL, and the
|
2474
|
// default value should be used.
|
2475
|
if (empty($element['#disabled'])) {
|
2476
|
return (is_array($input)) ? drupal_map_assoc($input) : array();
|
2477
|
}
|
2478
|
else {
|
2479
|
return (isset($element['#default_value']) && is_array($element['#default_value'])) ? $element['#default_value'] : array();
|
2480
|
}
|
2481
|
}
|
2482
|
// Non-multiple select elements may have an empty option preprended to them
|
2483
|
// (see form_process_select()). When this occurs, usually #empty_value is
|
2484
|
// an empty string, but some forms set #empty_value to integer 0 or some
|
2485
|
// other non-string constant. PHP receives all submitted form input as
|
2486
|
// strings, but if the empty option is selected, set the value to match the
|
2487
|
// empty value exactly.
|
2488
|
elseif (isset($element['#empty_value']) && $input === (string) $element['#empty_value']) {
|
2489
|
return $element['#empty_value'];
|
2490
|
}
|
2491
|
else {
|
2492
|
return $input;
|
2493
|
}
|
2494
|
}
|
2495
|
}
|
2496
|
|
2497
|
/**
|
2498
|
* Determines the value for a textfield form element.
|
2499
|
*
|
2500
|
* @param $element
|
2501
|
* The form element whose value is being populated.
|
2502
|
* @param $input
|
2503
|
* The incoming input to populate the form element. If this is FALSE,
|
2504
|
* the element's default value should be returned.
|
2505
|
*
|
2506
|
* @return
|
2507
|
* The data that will appear in the $element_state['values'] collection
|
2508
|
* for this element. Return nothing to use the default.
|
2509
|
*/
|
2510
|
function form_type_textfield_value($element, $input = FALSE) {
|
2511
|
if ($input !== FALSE && $input !== NULL) {
|
2512
|
// Equate $input to the form value to ensure it's marked for
|
2513
|
// validation.
|
2514
|
return str_replace(array("\r", "\n"), '', $input);
|
2515
|
}
|
2516
|
}
|
2517
|
|
2518
|
/**
|
2519
|
* Determines the value for form's token value.
|
2520
|
*
|
2521
|
* @param $element
|
2522
|
* The form element whose value is being populated.
|
2523
|
* @param $input
|
2524
|
* The incoming input to populate the form element. If this is FALSE,
|
2525
|
* the element's default value should be returned.
|
2526
|
*
|
2527
|
* @return
|
2528
|
* The data that will appear in the $element_state['values'] collection
|
2529
|
* for this element. Return nothing to use the default.
|
2530
|
*/
|
2531
|
function form_type_token_value($element, $input = FALSE) {
|
2532
|
if ($input !== FALSE) {
|
2533
|
return (string) $input;
|
2534
|
}
|
2535
|
}
|
2536
|
|
2537
|
/**
|
2538
|
* Changes submitted form values during form validation.
|
2539
|
*
|
2540
|
* Use this function to change the submitted value of a form element in a form
|
2541
|
* validation function, so that the changed value persists in $form_state
|
2542
|
* through the remaining validation and submission handlers. It does not change
|
2543
|
* the value in $element['#value'], only in $form_state['values'], which is
|
2544
|
* where submitted values are always stored.
|
2545
|
*
|
2546
|
* Note that form validation functions are specified in the '#validate'
|
2547
|
* component of the form array (the value of $form['#validate'] is an array of
|
2548
|
* validation function names). If the form does not originate in your module,
|
2549
|
* you can implement hook_form_FORM_ID_alter() to add a validation function
|
2550
|
* to $form['#validate'].
|
2551
|
*
|
2552
|
* @param $element
|
2553
|
* The form element that should have its value updated; in most cases you can
|
2554
|
* just pass in the element from the $form array, although the only component
|
2555
|
* that is actually used is '#parents'. If constructing yourself, set
|
2556
|
* $element['#parents'] to be an array giving the path through the form
|
2557
|
* array's keys to the element whose value you want to update. For instance,
|
2558
|
* if you want to update the value of $form['elem1']['elem2'], which should be
|
2559
|
* stored in $form_state['values']['elem1']['elem2'], you would set
|
2560
|
* $element['#parents'] = array('elem1','elem2').
|
2561
|
* @param $value
|
2562
|
* The new value for the form element.
|
2563
|
* @param $form_state
|
2564
|
* Form state array where the value change should be recorded.
|
2565
|
*/
|
2566
|
function form_set_value($element, $value, &$form_state) {
|
2567
|
drupal_array_set_nested_value($form_state['values'], $element['#parents'], $value, TRUE);
|
2568
|
}
|
2569
|
|
2570
|
/**
|
2571
|
* Allows PHP array processing of multiple select options with the same value.
|
2572
|
*
|
2573
|
* Used for form select elements which need to validate HTML option groups
|
2574
|
* and multiple options which may return the same value. Associative PHP arrays
|
2575
|
* cannot handle these structures, since they share a common key.
|
2576
|
*
|
2577
|
* @param $array
|
2578
|
* The form options array to process.
|
2579
|
*
|
2580
|
* @return
|
2581
|
* An array with all hierarchical elements flattened to a single array.
|
2582
|
*/
|
2583
|
function form_options_flatten($array) {
|
2584
|
// Always reset static var when first entering the recursion.
|
2585
|
drupal_static_reset('_form_options_flatten');
|
2586
|
return _form_options_flatten($array);
|
2587
|
}
|
2588
|
|
2589
|
/**
|
2590
|
* Iterates over an array and returns a flat array with duplicate keys removed.
|
2591
|
*
|
2592
|
* This function also handles cases where objects are passed as array values.
|
2593
|
*/
|
2594
|
function _form_options_flatten($array) {
|
2595
|
$return = &drupal_static(__FUNCTION__);
|
2596
|
|
2597
|
foreach ($array as $key => $value) {
|
2598
|
if (is_object($value)) {
|
2599
|
_form_options_flatten($value->option);
|
2600
|
}
|
2601
|
elseif (is_array($value)) {
|
2602
|
_form_options_flatten($value);
|
2603
|
}
|
2604
|
else {
|
2605
|
$return[$key] = 1;
|
2606
|
}
|
2607
|
}
|
2608
|
|
2609
|
return $return;
|
2610
|
}
|
2611
|
|
2612
|
/**
|
2613
|
* Processes a select list form element.
|
2614
|
*
|
2615
|
* This process callback is mandatory for select fields, since all user agents
|
2616
|
* automatically preselect the first available option of single (non-multiple)
|
2617
|
* select lists.
|
2618
|
*
|
2619
|
* @param $element
|
2620
|
* The form element to process. Properties used:
|
2621
|
* - #multiple: (optional) Indicates whether one or more options can be
|
2622
|
* selected. Defaults to FALSE.
|
2623
|
* - #default_value: Must be NULL or not set in case there is no value for the
|
2624
|
* element yet, in which case a first default option is inserted by default.
|
2625
|
* Whether this first option is a valid option depends on whether the field
|
2626
|
* is #required or not.
|
2627
|
* - #required: (optional) Whether the user needs to select an option (TRUE)
|
2628
|
* or not (FALSE). Defaults to FALSE.
|
2629
|
* - #empty_option: (optional) The label to show for the first default option.
|
2630
|
* By default, the label is automatically set to "- Please select -" for a
|
2631
|
* required field and "- None -" for an optional field.
|
2632
|
* - #empty_value: (optional) The value for the first default option, which is
|
2633
|
* used to determine whether the user submitted a value or not.
|
2634
|
* - If #required is TRUE, this defaults to '' (an empty string).
|
2635
|
* - If #required is not TRUE and this value isn't set, then no extra option
|
2636
|
* is added to the select control, leaving the control in a slightly
|
2637
|
* illogical state, because there's no way for the user to select nothing,
|
2638
|
* since all user agents automatically preselect the first available
|
2639
|
* option. But people are used to this being the behavior of select
|
2640
|
* controls.
|
2641
|
* @todo Address the above issue in Drupal 8.
|
2642
|
* - If #required is not TRUE and this value is set (most commonly to an
|
2643
|
* empty string), then an extra option (see #empty_option above)
|
2644
|
* representing a "non-selection" is added with this as its value.
|
2645
|
*
|
2646
|
* @see _form_validate()
|
2647
|
*/
|
2648
|
function form_process_select($element) {
|
2649
|
// #multiple select fields need a special #name.
|
2650
|
if ($element['#multiple']) {
|
2651
|
$element['#attributes']['multiple'] = 'multiple';
|
2652
|
$element['#attributes']['name'] = $element['#name'] . '[]';
|
2653
|
}
|
2654
|
// A non-#multiple select needs special handling to prevent user agents from
|
2655
|
// preselecting the first option without intention. #multiple select lists do
|
2656
|
// not get an empty option, as it would not make sense, user interface-wise.
|
2657
|
else {
|
2658
|
$required = $element['#required'];
|
2659
|
// If the element is required and there is no #default_value, then add an
|
2660
|
// empty option that will fail validation, so that the user is required to
|
2661
|
// make a choice. Also, if there's a value for #empty_value or
|
2662
|
// #empty_option, then add an option that represents emptiness.
|
2663
|
if (($required && !isset($element['#default_value'])) || isset($element['#empty_value']) || isset($element['#empty_option'])) {
|
2664
|
$element += array(
|
2665
|
'#empty_value' => '',
|
2666
|
'#empty_option' => $required ? t('- Select -') : t('- None -'),
|
2667
|
);
|
2668
|
// The empty option is prepended to #options and purposively not merged
|
2669
|
// to prevent another option in #options mistakenly using the same value
|
2670
|
// as #empty_value.
|
2671
|
$empty_option = array($element['#empty_value'] => $element['#empty_option']);
|
2672
|
$element['#options'] = $empty_option + $element['#options'];
|
2673
|
}
|
2674
|
}
|
2675
|
return $element;
|
2676
|
}
|
2677
|
|
2678
|
/**
|
2679
|
* Returns HTML for a select form element.
|
2680
|
*
|
2681
|
* It is possible to group options together; to do this, change the format of
|
2682
|
* $options to an associative array in which the keys are group labels, and the
|
2683
|
* values are associative arrays in the normal $options format.
|
2684
|
*
|
2685
|
* @param $variables
|
2686
|
* An associative array containing:
|
2687
|
* - element: An associative array containing the properties of the element.
|
2688
|
* Properties used: #title, #value, #options, #description, #extra,
|
2689
|
* #multiple, #required, #name, #attributes, #size.
|
2690
|
*
|
2691
|
* @ingroup themeable
|
2692
|
*/
|
2693
|
function theme_select($variables) {
|
2694
|
$element = $variables['element'];
|
2695
|
element_set_attributes($element, array('id', 'name', 'size'));
|
2696
|
_form_set_class($element, array('form-select'));
|
2697
|
|
2698
|
return '<select' . drupal_attributes($element['#attributes']) . '>' . form_select_options($element) . '</select>';
|
2699
|
}
|
2700
|
|
2701
|
/**
|
2702
|
* Converts an array of options into HTML, for use in select list form elements.
|
2703
|
*
|
2704
|
* This function calls itself recursively to obtain the values for each optgroup
|
2705
|
* within the list of options and when the function encounters an object with
|
2706
|
* an 'options' property inside $element['#options'].
|
2707
|
*
|
2708
|
* @param array $element
|
2709
|
* An associative array containing the following key-value pairs:
|
2710
|
* - #multiple: Optional Boolean indicating if the user may select more than
|
2711
|
* one item.
|
2712
|
* - #options: An associative array of options to render as HTML. Each array
|
2713
|
* value can be a string, an array, or an object with an 'option' property:
|
2714
|
* - A string or integer key whose value is a translated string is
|
2715
|
* interpreted as a single HTML option element. Do not use placeholders
|
2716
|
* that sanitize data: doing so will lead to double-escaping. Note that
|
2717
|
* the key will be visible in the HTML and could be modified by malicious
|
2718
|
* users, so don't put sensitive information in it.
|
2719
|
* - A translated string key whose value is an array indicates a group of
|
2720
|
* options. The translated string is used as the label attribute for the
|
2721
|
* optgroup. Do not use placeholders to sanitize data: doing so will lead
|
2722
|
* to double-escaping. The array should contain the options you wish to
|
2723
|
* group and should follow the syntax of $element['#options'].
|
2724
|
* - If the function encounters a string or integer key whose value is an
|
2725
|
* object with an 'option' property, the key is ignored, the contents of
|
2726
|
* the option property are interpreted as $element['#options'], and the
|
2727
|
* resulting HTML is added to the output.
|
2728
|
* - #value: Optional integer, string, or array representing which option(s)
|
2729
|
* to pre-select when the list is first displayed. The integer or string
|
2730
|
* must match the key of an option in the '#options' list. If '#multiple' is
|
2731
|
* TRUE, this can be an array of integers or strings.
|
2732
|
* @param array|null $choices
|
2733
|
* (optional) Either an associative array of options in the same format as
|
2734
|
* $element['#options'] above, or NULL. This parameter is only used internally
|
2735
|
* and is not intended to be passed in to the initial function call.
|
2736
|
*
|
2737
|
* @return string
|
2738
|
* An HTML string of options and optgroups for use in a select form element.
|
2739
|
*/
|
2740
|
function form_select_options($element, $choices = NULL) {
|
2741
|
if (!isset($choices)) {
|
2742
|
$choices = $element['#options'];
|
2743
|
}
|
2744
|
// array_key_exists() accommodates the rare event where $element['#value'] is NULL.
|
2745
|
// isset() fails in this situation.
|
2746
|
$value_valid = isset($element['#value']) || array_key_exists('#value', $element);
|
2747
|
$value_is_array = $value_valid && is_array($element['#value']);
|
2748
|
$options = '';
|
2749
|
foreach ($choices as $key => $choice) {
|
2750
|
if (is_array($choice)) {
|
2751
|
$options .= '<optgroup label="' . check_plain($key) . '">';
|
2752
|
$options .= form_select_options($element, $choice);
|
2753
|
$options .= '</optgroup>';
|
2754
|
}
|
2755
|
elseif (is_object($choice)) {
|
2756
|
$options .= form_select_options($element, $choice->option);
|
2757
|
}
|
2758
|
else {
|
2759
|
$key = (string) $key;
|
2760
|
if ($value_valid && (!$value_is_array && (string) $element['#value'] === $key || ($value_is_array && in_array($key, $element['#value'])))) {
|
2761
|
$selected = ' selected="selected"';
|
2762
|
}
|
2763
|
else {
|
2764
|
$selected = '';
|
2765
|
}
|
2766
|
$options .= '<option value="' . check_plain($key) . '"' . $selected . '>' . check_plain($choice) . '</option>';
|
2767
|
}
|
2768
|
}
|
2769
|
return $options;
|
2770
|
}
|
2771
|
|
2772
|
/**
|
2773
|
* Returns the indexes of a select element's options matching a given key.
|
2774
|
*
|
2775
|
* This function is useful if you need to modify the options that are
|
2776
|
* already in a form element; for example, to remove choices which are
|
2777
|
* not valid because of additional filters imposed by another module.
|
2778
|
* One example might be altering the choices in a taxonomy selector.
|
2779
|
* To correctly handle the case of a multiple hierarchy taxonomy,
|
2780
|
* #options arrays can now hold an array of objects, instead of a
|
2781
|
* direct mapping of keys to labels, so that multiple choices in the
|
2782
|
* selector can have the same key (and label). This makes it difficult
|
2783
|
* to manipulate directly, which is why this helper function exists.
|
2784
|
*
|
2785
|
* This function does not support optgroups (when the elements of the
|
2786
|
* #options array are themselves arrays), and will return FALSE if
|
2787
|
* arrays are found. The caller must either flatten/restore or
|
2788
|
* manually do their manipulations in this case, since returning the
|
2789
|
* index is not sufficient, and supporting this would make the
|
2790
|
* "helper" too complicated and cumbersome to be of any help.
|
2791
|
*
|
2792
|
* As usual with functions that can return array() or FALSE, do not
|
2793
|
* forget to use === and !== if needed.
|
2794
|
*
|
2795
|
* @param $element
|
2796
|
* The select element to search.
|
2797
|
* @param $key
|
2798
|
* The key to look for.
|
2799
|
*
|
2800
|
* @return
|
2801
|
* An array of indexes that match the given $key. Array will be
|
2802
|
* empty if no elements were found. FALSE if optgroups were found.
|
2803
|
*/
|
2804
|
function form_get_options($element, $key) {
|
2805
|
$keys = array();
|
2806
|
foreach ($element['#options'] as $index => $choice) {
|
2807
|
if (is_array($choice)) {
|
2808
|
return FALSE;
|
2809
|
}
|
2810
|
elseif (is_object($choice)) {
|
2811
|
if (isset($choice->option[$key])) {
|
2812
|
$keys[] = $index;
|
2813
|
}
|
2814
|
}
|
2815
|
elseif ($index == $key) {
|
2816
|
$keys[] = $index;
|
2817
|
}
|
2818
|
}
|
2819
|
return $keys;
|
2820
|
}
|
2821
|
|
2822
|
/**
|
2823
|
* Returns HTML for a fieldset form element and its children.
|
2824
|
*
|
2825
|
* @param $variables
|
2826
|
* An associative array containing:
|
2827
|
* - element: An associative array containing the properties of the element.
|
2828
|
* Properties used: #attributes, #children, #collapsed, #collapsible,
|
2829
|
* #description, #id, #title, #value.
|
2830
|
*
|
2831
|
* @ingroup themeable
|
2832
|
*/
|
2833
|
function theme_fieldset($variables) {
|
2834
|
$element = $variables['element'];
|
2835
|
element_set_attributes($element, array('id'));
|
2836
|
_form_set_class($element, array('form-wrapper'));
|
2837
|
|
2838
|
$output = '<fieldset' . drupal_attributes($element['#attributes']) . '>';
|
2839
|
if (!empty($element['#title'])) {
|
2840
|
// Always wrap fieldset legends in a SPAN for CSS positioning.
|
2841
|
$output .= '<legend><span class="fieldset-legend">' . $element['#title'] . '</span></legend>';
|
2842
|
}
|
2843
|
$output .= '<div class="fieldset-wrapper">';
|
2844
|
if (!empty($element['#description'])) {
|
2845
|
$output .= '<div class="fieldset-description">' . $element['#description'] . '</div>';
|
2846
|
}
|
2847
|
$output .= $element['#children'];
|
2848
|
if (isset($element['#value'])) {
|
2849
|
$output .= $element['#value'];
|
2850
|
}
|
2851
|
$output .= '</div>';
|
2852
|
$output .= "</fieldset>\n";
|
2853
|
return $output;
|
2854
|
}
|
2855
|
|
2856
|
/**
|
2857
|
* Returns HTML for a radio button form element.
|
2858
|
*
|
2859
|
* Note: The input "name" attribute needs to be sanitized before output, which
|
2860
|
* is currently done by passing all attributes to drupal_attributes().
|
2861
|
*
|
2862
|
* @param $variables
|
2863
|
* An associative array containing:
|
2864
|
* - element: An associative array containing the properties of the element.
|
2865
|
* Properties used: #required, #return_value, #value, #attributes, #title,
|
2866
|
* #description
|
2867
|
*
|
2868
|
* @ingroup themeable
|
2869
|
*/
|
2870
|
function theme_radio($variables) {
|
2871
|
$element = $variables['element'];
|
2872
|
$element['#attributes']['type'] = 'radio';
|
2873
|
element_set_attributes($element, array('id', 'name', '#return_value' => 'value'));
|
2874
|
|
2875
|
if (isset($element['#return_value']) && $element['#value'] !== FALSE && $element['#value'] == $element['#return_value']) {
|
2876
|
$element['#attributes']['checked'] = 'checked';
|
2877
|
}
|
2878
|
_form_set_class($element, array('form-radio'));
|
2879
|
|
2880
|
return '<input' . drupal_attributes($element['#attributes']) . ' />';
|
2881
|
}
|
2882
|
|
2883
|
/**
|
2884
|
* Returns HTML for a set of radio button form elements.
|
2885
|
*
|
2886
|
* @param $variables
|
2887
|
* An associative array containing:
|
2888
|
* - element: An associative array containing the properties of the element.
|
2889
|
* Properties used: #title, #value, #options, #description, #required,
|
2890
|
* #attributes, #children.
|
2891
|
*
|
2892
|
* @ingroup themeable
|
2893
|
*/
|
2894
|
function theme_radios($variables) {
|
2895
|
$element = $variables['element'];
|
2896
|
$attributes = array();
|
2897
|
if (isset($element['#id'])) {
|
2898
|
$attributes['id'] = $element['#id'];
|
2899
|
}
|
2900
|
$attributes['class'] = 'form-radios';
|
2901
|
if (!empty($element['#attributes']['class'])) {
|
2902
|
$attributes['class'] .= ' ' . implode(' ', $element['#attributes']['class']);
|
2903
|
}
|
2904
|
if (isset($element['#attributes']['title'])) {
|
2905
|
$attributes['title'] = $element['#attributes']['title'];
|
2906
|
}
|
2907
|
return '<div' . drupal_attributes($attributes) . '>' . (!empty($element['#children']) ? $element['#children'] : '') . '</div>';
|
2908
|
}
|
2909
|
|
2910
|
/**
|
2911
|
* Expand a password_confirm field into two text boxes.
|
2912
|
*/
|
2913
|
function form_process_password_confirm($element) {
|
2914
|
$element['pass1'] = array(
|
2915
|
'#type' => 'password',
|
2916
|
'#title' => t('Password'),
|
2917
|
'#value' => empty($element['#value']) ? NULL : $element['#value']['pass1'],
|
2918
|
'#required' => $element['#required'],
|
2919
|
'#attributes' => array('class' => array('password-field')),
|
2920
|
);
|
2921
|
$element['pass2'] = array(
|
2922
|
'#type' => 'password',
|
2923
|
'#title' => t('Confirm password'),
|
2924
|
'#value' => empty($element['#value']) ? NULL : $element['#value']['pass2'],
|
2925
|
'#required' => $element['#required'],
|
2926
|
'#attributes' => array('class' => array('password-confirm')),
|
2927
|
);
|
2928
|
$element['#element_validate'] = array('password_confirm_validate');
|
2929
|
$element['#tree'] = TRUE;
|
2930
|
|
2931
|
if (isset($element['#size'])) {
|
2932
|
$element['pass1']['#size'] = $element['pass2']['#size'] = $element['#size'];
|
2933
|
}
|
2934
|
|
2935
|
return $element;
|
2936
|
}
|
2937
|
|
2938
|
/**
|
2939
|
* Validates a password_confirm element.
|
2940
|
*/
|
2941
|
function password_confirm_validate($element, &$element_state) {
|
2942
|
$pass1 = trim($element['pass1']['#value']);
|
2943
|
$pass2 = trim($element['pass2']['#value']);
|
2944
|
if (!empty($pass1) || !empty($pass2)) {
|
2945
|
if (strcmp($pass1, $pass2)) {
|
2946
|
form_error($element, t('The specified passwords do not match.'));
|
2947
|
}
|
2948
|
}
|
2949
|
elseif ($element['#required'] && !empty($element_state['input'])) {
|
2950
|
form_error($element, t('Password field is required.'));
|
2951
|
}
|
2952
|
|
2953
|
// Password field must be converted from a two-element array into a single
|
2954
|
// string regardless of validation results.
|
2955
|
form_set_value($element['pass1'], NULL, $element_state);
|
2956
|
form_set_value($element['pass2'], NULL, $element_state);
|
2957
|
form_set_value($element, $pass1, $element_state);
|
2958
|
|
2959
|
return $element;
|
2960
|
|
2961
|
}
|
2962
|
|
2963
|
/**
|
2964
|
* Returns HTML for a date selection form element.
|
2965
|
*
|
2966
|
* @param $variables
|
2967
|
* An associative array containing:
|
2968
|
* - element: An associative array containing the properties of the element.
|
2969
|
* Properties used: #title, #value, #options, #description, #required,
|
2970
|
* #attributes.
|
2971
|
*
|
2972
|
* @ingroup themeable
|
2973
|
*/
|
2974
|
function theme_date($variables) {
|
2975
|
$element = $variables['element'];
|
2976
|
|
2977
|
$attributes = array();
|
2978
|
if (isset($element['#id'])) {
|
2979
|
$attributes['id'] = $element['#id'];
|
2980
|
}
|
2981
|
if (!empty($element['#attributes']['class'])) {
|
2982
|
$attributes['class'] = (array) $element['#attributes']['class'];
|
2983
|
}
|
2984
|
$attributes['class'][] = 'container-inline';
|
2985
|
|
2986
|
return '<div' . drupal_attributes($attributes) . '>' . drupal_render_children($element) . '</div>';
|
2987
|
}
|
2988
|
|
2989
|
/**
|
2990
|
* Expands a date element into year, month, and day select elements.
|
2991
|
*/
|
2992
|
function form_process_date($element) {
|
2993
|
// Default to current date
|
2994
|
if (empty($element['#value'])) {
|
2995
|
$element['#value'] = array(
|
2996
|
'day' => format_date(REQUEST_TIME, 'custom', 'j'),
|
2997
|
'month' => format_date(REQUEST_TIME, 'custom', 'n'),
|
2998
|
'year' => format_date(REQUEST_TIME, 'custom', 'Y'),
|
2999
|
);
|
3000
|
}
|
3001
|
|
3002
|
$element['#tree'] = TRUE;
|
3003
|
|
3004
|
// Determine the order of day, month, year in the site's chosen date format.
|
3005
|
$format = variable_get('date_format_short', 'm/d/Y - H:i');
|
3006
|
$sort = array();
|
3007
|
$sort['day'] = max(strpos($format, 'd'), strpos($format, 'j'));
|
3008
|
$sort['month'] = max(strpos($format, 'm'), strpos($format, 'M'));
|
3009
|
$sort['year'] = strpos($format, 'Y');
|
3010
|
asort($sort);
|
3011
|
$order = array_keys($sort);
|
3012
|
|
3013
|
// Output multi-selector for date.
|
3014
|
foreach ($order as $type) {
|
3015
|
switch ($type) {
|
3016
|
case 'day':
|
3017
|
$options = drupal_map_assoc(range(1, 31));
|
3018
|
$title = t('Day');
|
3019
|
break;
|
3020
|
|
3021
|
case 'month':
|
3022
|
$options = drupal_map_assoc(range(1, 12), 'map_month');
|
3023
|
$title = t('Month');
|
3024
|
break;
|
3025
|
|
3026
|
case 'year':
|
3027
|
$options = drupal_map_assoc(range(1900, 2050));
|
3028
|
$title = t('Year');
|
3029
|
break;
|
3030
|
}
|
3031
|
|
3032
|
$element[$type] = array(
|
3033
|
'#type' => 'select',
|
3034
|
'#title' => $title,
|
3035
|
'#title_display' => 'invisible',
|
3036
|
'#value' => $element['#value'][$type],
|
3037
|
'#attributes' => $element['#attributes'],
|
3038
|
'#options' => $options,
|
3039
|
);
|
3040
|
}
|
3041
|
|
3042
|
return $element;
|
3043
|
}
|
3044
|
|
3045
|
/**
|
3046
|
* Validates the date type to prevent invalid dates (e.g., February 30, 2006).
|
3047
|
*/
|
3048
|
function date_validate($element) {
|
3049
|
if (!checkdate($element['#value']['month'], $element['#value']['day'], $element['#value']['year'])) {
|
3050
|
form_error($element, t('The specified date is invalid.'));
|
3051
|
}
|
3052
|
}
|
3053
|
|
3054
|
/**
|
3055
|
* Helper function for usage with drupal_map_assoc to display month names.
|
3056
|
*/
|
3057
|
function map_month($month) {
|
3058
|
$months = &drupal_static(__FUNCTION__, array(
|
3059
|
1 => 'Jan',
|
3060
|
2 => 'Feb',
|
3061
|
3 => 'Mar',
|
3062
|
4 => 'Apr',
|
3063
|
5 => 'May',
|
3064
|
6 => 'Jun',
|
3065
|
7 => 'Jul',
|
3066
|
8 => 'Aug',
|
3067
|
9 => 'Sep',
|
3068
|
10 => 'Oct',
|
3069
|
11 => 'Nov',
|
3070
|
12 => 'Dec',
|
3071
|
));
|
3072
|
return t($months[$month]);
|
3073
|
}
|
3074
|
|
3075
|
/**
|
3076
|
* Sets the value for a weight element, with zero as a default.
|
3077
|
*/
|
3078
|
function weight_value(&$form) {
|
3079
|
if (isset($form['#default_value'])) {
|
3080
|
$form['#value'] = $form['#default_value'];
|
3081
|
}
|
3082
|
else {
|
3083
|
$form['#value'] = 0;
|
3084
|
}
|
3085
|
}
|
3086
|
|
3087
|
/**
|
3088
|
* Expands a radios element into individual radio elements.
|
3089
|
*/
|
3090
|
function form_process_radios($element) {
|
3091
|
if (count($element['#options']) > 0) {
|
3092
|
$weight = 0;
|
3093
|
foreach ($element['#options'] as $key => $choice) {
|
3094
|
// Maintain order of options as defined in #options, in case the element
|
3095
|
// defines custom option sub-elements, but does not define all option
|
3096
|
// sub-elements.
|
3097
|
$weight += 0.001;
|
3098
|
|
3099
|
$element += array($key => array());
|
3100
|
// Generate the parents as the autogenerator does, so we will have a
|
3101
|
// unique id for each radio button.
|
3102
|
$parents_for_id = array_merge($element['#parents'], array($key));
|
3103
|
$element[$key] += array(
|
3104
|
'#type' => 'radio',
|
3105
|
'#title' => $choice,
|
3106
|
// The key is sanitized in drupal_attributes() during output from the
|
3107
|
// theme function.
|
3108
|
'#return_value' => $key,
|
3109
|
// Use default or FALSE. A value of FALSE means that the radio button is
|
3110
|
// not 'checked'.
|
3111
|
'#default_value' => isset($element['#default_value']) ? $element['#default_value'] : FALSE,
|
3112
|
'#attributes' => $element['#attributes'],
|
3113
|
'#parents' => $element['#parents'],
|
3114
|
'#id' => drupal_html_id('edit-' . implode('-', $parents_for_id)),
|
3115
|
'#ajax' => isset($element['#ajax']) ? $element['#ajax'] : NULL,
|
3116
|
'#weight' => $weight,
|
3117
|
);
|
3118
|
}
|
3119
|
}
|
3120
|
return $element;
|
3121
|
}
|
3122
|
|
3123
|
/**
|
3124
|
* Returns HTML for a checkbox form element.
|
3125
|
*
|
3126
|
* @param $variables
|
3127
|
* An associative array containing:
|
3128
|
* - element: An associative array containing the properties of the element.
|
3129
|
* Properties used: #id, #name, #attributes, #checked, #return_value.
|
3130
|
*
|
3131
|
* @ingroup themeable
|
3132
|
*/
|
3133
|
function theme_checkbox($variables) {
|
3134
|
$element = $variables['element'];
|
3135
|
$element['#attributes']['type'] = 'checkbox';
|
3136
|
element_set_attributes($element, array('id', 'name', '#return_value' => 'value'));
|
3137
|
|
3138
|
// Unchecked checkbox has #value of integer 0.
|
3139
|
if (!empty($element['#checked'])) {
|
3140
|
$element['#attributes']['checked'] = 'checked';
|
3141
|
}
|
3142
|
_form_set_class($element, array('form-checkbox'));
|
3143
|
|
3144
|
return '<input' . drupal_attributes($element['#attributes']) . ' />';
|
3145
|
}
|
3146
|
|
3147
|
/**
|
3148
|
* Returns HTML for a set of checkbox form elements.
|
3149
|
*
|
3150
|
* @param $variables
|
3151
|
* An associative array containing:
|
3152
|
* - element: An associative array containing the properties of the element.
|
3153
|
* Properties used: #children, #attributes.
|
3154
|
*
|
3155
|
* @ingroup themeable
|
3156
|
*/
|
3157
|
function theme_checkboxes($variables) {
|
3158
|
$element = $variables['element'];
|
3159
|
$attributes = array();
|
3160
|
if (isset($element['#id'])) {
|
3161
|
$attributes['id'] = $element['#id'];
|
3162
|
}
|
3163
|
$attributes['class'][] = 'form-checkboxes';
|
3164
|
if (!empty($element['#attributes']['class'])) {
|
3165
|
$attributes['class'] = array_merge($attributes['class'], $element['#attributes']['class']);
|
3166
|
}
|
3167
|
if (isset($element['#attributes']['title'])) {
|
3168
|
$attributes['title'] = $element['#attributes']['title'];
|
3169
|
}
|
3170
|
return '<div' . drupal_attributes($attributes) . '>' . (!empty($element['#children']) ? $element['#children'] : '') . '</div>';
|
3171
|
}
|
3172
|
|
3173
|
/**
|
3174
|
* Adds form element theming to an element if its title or description is set.
|
3175
|
*
|
3176
|
* This is used as a pre render function for checkboxes and radios.
|
3177
|
*/
|
3178
|
function form_pre_render_conditional_form_element($element) {
|
3179
|
$t = get_t();
|
3180
|
// Set the element's title attribute to show #title as a tooltip, if needed.
|
3181
|
if (isset($element['#title']) && $element['#title_display'] == 'attribute') {
|
3182
|
$element['#attributes']['title'] = $element['#title'];
|
3183
|
if (!empty($element['#required'])) {
|
3184
|
// Append an indication that this field is required.
|
3185
|
$element['#attributes']['title'] .= ' (' . $t('Required') . ')';
|
3186
|
}
|
3187
|
}
|
3188
|
|
3189
|
if (isset($element['#title']) || isset($element['#description'])) {
|
3190
|
$element['#theme_wrappers'][] = 'form_element';
|
3191
|
}
|
3192
|
return $element;
|
3193
|
}
|
3194
|
|
3195
|
/**
|
3196
|
* Sets the #checked property of a checkbox element.
|
3197
|
*/
|
3198
|
function form_process_checkbox($element, $form_state) {
|
3199
|
$value = $element['#value'];
|
3200
|
$return_value = $element['#return_value'];
|
3201
|
// On form submission, the #value of an available and enabled checked
|
3202
|
// checkbox is #return_value, and the #value of an available and enabled
|
3203
|
// unchecked checkbox is integer 0. On not submitted forms, and for
|
3204
|
// checkboxes with #access=FALSE or #disabled=TRUE, the #value is
|
3205
|
// #default_value (integer 0 if #default_value is NULL). Most of the time,
|
3206
|
// a string comparison of #value and #return_value is sufficient for
|
3207
|
// determining the "checked" state, but a value of TRUE always means checked
|
3208
|
// (even if #return_value is 'foo'), and a value of FALSE or integer 0 always
|
3209
|
// means unchecked (even if #return_value is '' or '0').
|
3210
|
if ($value === TRUE || $value === FALSE || $value === 0) {
|
3211
|
$element['#checked'] = (bool) $value;
|
3212
|
}
|
3213
|
else {
|
3214
|
// Compare as strings, so that 15 is not considered equal to '15foo', but 1
|
3215
|
// is considered equal to '1'. This cast does not imply that either #value
|
3216
|
// or #return_value is expected to be a string.
|
3217
|
$element['#checked'] = ((string) $value === (string) $return_value);
|
3218
|
}
|
3219
|
return $element;
|
3220
|
}
|
3221
|
|
3222
|
/**
|
3223
|
* Processes a checkboxes form element.
|
3224
|
*/
|
3225
|
function form_process_checkboxes($element) {
|
3226
|
$value = is_array($element['#value']) ? $element['#value'] : array();
|
3227
|
$element['#tree'] = TRUE;
|
3228
|
if (count($element['#options']) > 0) {
|
3229
|
if (!isset($element['#default_value']) || $element['#default_value'] == 0) {
|
3230
|
$element['#default_value'] = array();
|
3231
|
}
|
3232
|
$weight = 0;
|
3233
|
foreach ($element['#options'] as $key => $choice) {
|
3234
|
// Integer 0 is not a valid #return_value, so use '0' instead.
|
3235
|
// @see form_type_checkbox_value().
|
3236
|
// @todo For Drupal 8, cast all integer keys to strings for consistency
|
3237
|
// with form_process_radios().
|
3238
|
if ($key === 0) {
|
3239
|
$key = '0';
|
3240
|
}
|
3241
|
// Maintain order of options as defined in #options, in case the element
|
3242
|
// defines custom option sub-elements, but does not define all option
|
3243
|
// sub-elements.
|
3244
|
$weight += 0.001;
|
3245
|
|
3246
|
$element += array($key => array());
|
3247
|
$element[$key] += array(
|
3248
|
'#type' => 'checkbox',
|
3249
|
'#title' => $choice,
|
3250
|
'#return_value' => $key,
|
3251
|
'#default_value' => isset($value[$key]) ? $key : NULL,
|
3252
|
'#attributes' => $element['#attributes'],
|
3253
|
'#ajax' => isset($element['#ajax']) ? $element['#ajax'] : NULL,
|
3254
|
'#weight' => $weight,
|
3255
|
);
|
3256
|
}
|
3257
|
}
|
3258
|
return $element;
|
3259
|
}
|
3260
|
|
3261
|
/**
|
3262
|
* Processes a form actions container element.
|
3263
|
*
|
3264
|
* @param $element
|
3265
|
* An associative array containing the properties and children of the
|
3266
|
* form actions container.
|
3267
|
* @param $form_state
|
3268
|
* The $form_state array for the form this element belongs to.
|
3269
|
*
|
3270
|
* @return
|
3271
|
* The processed element.
|
3272
|
*/
|
3273
|
function form_process_actions($element, &$form_state) {
|
3274
|
$element['#attributes']['class'][] = 'form-actions';
|
3275
|
return $element;
|
3276
|
}
|
3277
|
|
3278
|
/**
|
3279
|
* Processes a container element.
|
3280
|
*
|
3281
|
* @param $element
|
3282
|
* An associative array containing the properties and children of the
|
3283
|
* container.
|
3284
|
* @param $form_state
|
3285
|
* The $form_state array for the form this element belongs to.
|
3286
|
*
|
3287
|
* @return
|
3288
|
* The processed element.
|
3289
|
*/
|
3290
|
function form_process_container($element, &$form_state) {
|
3291
|
// Generate the ID of the element if it's not explicitly given.
|
3292
|
if (!isset($element['#id'])) {
|
3293
|
$element['#id'] = drupal_html_id(implode('-', $element['#parents']) . '-wrapper');
|
3294
|
}
|
3295
|
return $element;
|
3296
|
}
|
3297
|
|
3298
|
/**
|
3299
|
* Returns HTML to wrap child elements in a container.
|
3300
|
*
|
3301
|
* Used for grouped form items. Can also be used as a #theme_wrapper for any
|
3302
|
* renderable element, to surround it with a <div> and add attributes such as
|
3303
|
* classes or an HTML id.
|
3304
|
*
|
3305
|
* @param $variables
|
3306
|
* An associative array containing:
|
3307
|
* - element: An associative array containing the properties of the element.
|
3308
|
* Properties used: #id, #attributes, #children.
|
3309
|
*
|
3310
|
* @ingroup themeable
|
3311
|
*/
|
3312
|
function theme_container($variables) {
|
3313
|
$element = $variables['element'];
|
3314
|
// Ensure #attributes is set.
|
3315
|
$element += array('#attributes' => array());
|
3316
|
|
3317
|
// Special handling for form elements.
|
3318
|
if (isset($element['#array_parents'])) {
|
3319
|
// Assign an html ID.
|
3320
|
if (!isset($element['#attributes']['id'])) {
|
3321
|
$element['#attributes']['id'] = $element['#id'];
|
3322
|
}
|
3323
|
// Add the 'form-wrapper' class.
|
3324
|
$element['#attributes']['class'][] = 'form-wrapper';
|
3325
|
}
|
3326
|
|
3327
|
return '<div' . drupal_attributes($element['#attributes']) . '>' . $element['#children'] . '</div>';
|
3328
|
}
|
3329
|
|
3330
|
/**
|
3331
|
* Returns HTML for a table with radio buttons or checkboxes.
|
3332
|
*
|
3333
|
* @param $variables
|
3334
|
* An associative array containing:
|
3335
|
* - element: An associative array containing the properties and children of
|
3336
|
* the tableselect element. Properties used: #header, #options, #empty,
|
3337
|
* and #js_select. The #options property is an array of selection options;
|
3338
|
* each array element of #options is an array of properties. These
|
3339
|
* properties can include #attributes, which is added to the
|
3340
|
* table row's HTML attributes; see theme_table(). An example of per-row
|
3341
|
* options:
|
3342
|
* @code
|
3343
|
* $options = array(
|
3344
|
* array(
|
3345
|
* 'title' => 'How to Learn Drupal',
|
3346
|
* 'content_type' => 'Article',
|
3347
|
* 'status' => 'published',
|
3348
|
* '#attributes' => array('class' => array('article-row')),
|
3349
|
* ),
|
3350
|
* array(
|
3351
|
* 'title' => 'Privacy Policy',
|
3352
|
* 'content_type' => 'Page',
|
3353
|
* 'status' => 'published',
|
3354
|
* '#attributes' => array('class' => array('page-row')),
|
3355
|
* ),
|
3356
|
* );
|
3357
|
* $header = array(
|
3358
|
* 'title' => t('Title'),
|
3359
|
* 'content_type' => t('Content type'),
|
3360
|
* 'status' => t('Status'),
|
3361
|
* );
|
3362
|
* $form['table'] = array(
|
3363
|
* '#type' => 'tableselect',
|
3364
|
* '#header' => $header,
|
3365
|
* '#options' => $options,
|
3366
|
* '#empty' => t('No content available.'),
|
3367
|
* );
|
3368
|
* @endcode
|
3369
|
*
|
3370
|
* @ingroup themeable
|
3371
|
*/
|
3372
|
function theme_tableselect($variables) {
|
3373
|
$element = $variables['element'];
|
3374
|
$rows = array();
|
3375
|
$header = $element['#header'];
|
3376
|
if (!empty($element['#options'])) {
|
3377
|
// Generate a table row for each selectable item in #options.
|
3378
|
foreach (element_children($element) as $key) {
|
3379
|
$row = array();
|
3380
|
|
3381
|
$row['data'] = array();
|
3382
|
if (isset($element['#options'][$key]['#attributes'])) {
|
3383
|
$row += $element['#options'][$key]['#attributes'];
|
3384
|
}
|
3385
|
// Render the checkbox / radio element.
|
3386
|
$row['data'][] = drupal_render($element[$key]);
|
3387
|
|
3388
|
// As theme_table only maps header and row columns by order, create the
|
3389
|
// correct order by iterating over the header fields.
|
3390
|
foreach ($element['#header'] as $fieldname => $title) {
|
3391
|
$row['data'][] = $element['#options'][$key][$fieldname];
|
3392
|
}
|
3393
|
$rows[] = $row;
|
3394
|
}
|
3395
|
// Add an empty header or a "Select all" checkbox to provide room for the
|
3396
|
// checkboxes/radios in the first table column.
|
3397
|
if ($element['#js_select']) {
|
3398
|
// Add a "Select all" checkbox.
|
3399
|
drupal_add_js('misc/tableselect.js');
|
3400
|
array_unshift($header, array('class' => array('select-all')));
|
3401
|
}
|
3402
|
else {
|
3403
|
// Add an empty header when radio buttons are displayed or a "Select all"
|
3404
|
// checkbox is not desired.
|
3405
|
array_unshift($header, '');
|
3406
|
}
|
3407
|
}
|
3408
|
return theme('table', array('header' => $header, 'rows' => $rows, 'empty' => $element['#empty'], 'attributes' => $element['#attributes']));
|
3409
|
}
|
3410
|
|
3411
|
/**
|
3412
|
* Creates checkbox or radio elements to populate a tableselect table.
|
3413
|
*
|
3414
|
* @param $element
|
3415
|
* An associative array containing the properties and children of the
|
3416
|
* tableselect element.
|
3417
|
*
|
3418
|
* @return
|
3419
|
* The processed element.
|
3420
|
*/
|
3421
|
function form_process_tableselect($element) {
|
3422
|
|
3423
|
if ($element['#multiple']) {
|
3424
|
$value = is_array($element['#value']) ? $element['#value'] : array();
|
3425
|
}
|
3426
|
else {
|
3427
|
// Advanced selection behavior makes no sense for radios.
|
3428
|
$element['#js_select'] = FALSE;
|
3429
|
}
|
3430
|
|
3431
|
$element['#tree'] = TRUE;
|
3432
|
|
3433
|
if (count($element['#options']) > 0) {
|
3434
|
if (!isset($element['#default_value']) || $element['#default_value'] === 0) {
|
3435
|
$element['#default_value'] = array();
|
3436
|
}
|
3437
|
|
3438
|
// Create a checkbox or radio for each item in #options in such a way that
|
3439
|
// the value of the tableselect element behaves as if it had been of type
|
3440
|
// checkboxes or radios.
|
3441
|
foreach ($element['#options'] as $key => $choice) {
|
3442
|
// Do not overwrite manually created children.
|
3443
|
if (!isset($element[$key])) {
|
3444
|
if ($element['#multiple']) {
|
3445
|
$title = '';
|
3446
|
if (!empty($element['#options'][$key]['title']['data']['#title'])) {
|
3447
|
$title = t('Update @title', array(
|
3448
|
'@title' => $element['#options'][$key]['title']['data']['#title'],
|
3449
|
));
|
3450
|
}
|
3451
|
$element[$key] = array(
|
3452
|
'#type' => 'checkbox',
|
3453
|
'#title' => $title,
|
3454
|
'#title_display' => 'invisible',
|
3455
|
'#return_value' => $key,
|
3456
|
'#default_value' => isset($value[$key]) ? $key : NULL,
|
3457
|
'#attributes' => $element['#attributes'],
|
3458
|
);
|
3459
|
}
|
3460
|
else {
|
3461
|
// Generate the parents as the autogenerator does, so we will have a
|
3462
|
// unique id for each radio button.
|
3463
|
$parents_for_id = array_merge($element['#parents'], array($key));
|
3464
|
$element[$key] = array(
|
3465
|
'#type' => 'radio',
|
3466
|
'#title' => '',
|
3467
|
'#return_value' => $key,
|
3468
|
'#default_value' => ($element['#default_value'] == $key) ? $key : NULL,
|
3469
|
'#attributes' => $element['#attributes'],
|
3470
|
'#parents' => $element['#parents'],
|
3471
|
'#id' => drupal_html_id('edit-' . implode('-', $parents_for_id)),
|
3472
|
'#ajax' => isset($element['#ajax']) ? $element['#ajax'] : NULL,
|
3473
|
);
|
3474
|
}
|
3475
|
if (isset($element['#options'][$key]['#weight'])) {
|
3476
|
$element[$key]['#weight'] = $element['#options'][$key]['#weight'];
|
3477
|
}
|
3478
|
}
|
3479
|
}
|
3480
|
}
|
3481
|
else {
|
3482
|
$element['#value'] = array();
|
3483
|
}
|
3484
|
return $element;
|
3485
|
}
|
3486
|
|
3487
|
/**
|
3488
|
* Processes a machine-readable name form element.
|
3489
|
*
|
3490
|
* @param $element
|
3491
|
* The form element to process. Properties used:
|
3492
|
* - #machine_name: An associative array containing:
|
3493
|
* - exists: A function name to invoke for checking whether a submitted
|
3494
|
* machine name value already exists. The submitted value is passed as
|
3495
|
* argument. In most cases, an existing API or menu argument loader
|
3496
|
* function can be re-used. The callback is only invoked, if the submitted
|
3497
|
* value differs from the element's #default_value.
|
3498
|
* - source: (optional) The #array_parents of the form element containing
|
3499
|
* the human-readable name (i.e., as contained in the $form structure) to
|
3500
|
* use as source for the machine name. Defaults to array('name').
|
3501
|
* - label: (optional) A text to display as label for the machine name value
|
3502
|
* after the human-readable name form element. Defaults to "Machine name".
|
3503
|
* - replace_pattern: (optional) A regular expression (without delimiters)
|
3504
|
* matching disallowed characters in the machine name. Defaults to
|
3505
|
* '[^a-z0-9_]+'.
|
3506
|
* - replace: (optional) A character to replace disallowed characters in the
|
3507
|
* machine name via JavaScript. Defaults to '_' (underscore). When using a
|
3508
|
* different character, 'replace_pattern' needs to be set accordingly.
|
3509
|
* - error: (optional) A custom form error message string to show, if the
|
3510
|
* machine name contains disallowed characters.
|
3511
|
* - standalone: (optional) Whether the live preview should stay in its own
|
3512
|
* form element rather than in the suffix of the source element. Defaults
|
3513
|
* to FALSE.
|
3514
|
* - #maxlength: (optional) Should be set to the maximum allowed length of the
|
3515
|
* machine name. Defaults to 64.
|
3516
|
* - #disabled: (optional) Should be set to TRUE in case an existing machine
|
3517
|
* name must not be changed after initial creation.
|
3518
|
*/
|
3519
|
function form_process_machine_name($element, &$form_state) {
|
3520
|
// Apply default form element properties.
|
3521
|
$element += array(
|
3522
|
'#title' => t('Machine-readable name'),
|
3523
|
'#description' => t('A unique machine-readable name. Can only contain lowercase letters, numbers, and underscores.'),
|
3524
|
'#machine_name' => array(),
|
3525
|
'#field_prefix' => '',
|
3526
|
'#field_suffix' => '',
|
3527
|
'#suffix' => '',
|
3528
|
);
|
3529
|
// A form element that only wants to set one #machine_name property (usually
|
3530
|
// 'source' only) would leave all other properties undefined, if the defaults
|
3531
|
// were defined in hook_element_info(). Therefore, we apply the defaults here.
|
3532
|
$element['#machine_name'] += array(
|
3533
|
'source' => array('name'),
|
3534
|
'target' => '#' . $element['#id'],
|
3535
|
'label' => t('Machine name'),
|
3536
|
'replace_pattern' => '[^a-z0-9_]+',
|
3537
|
'replace' => '_',
|
3538
|
'standalone' => FALSE,
|
3539
|
'field_prefix' => $element['#field_prefix'],
|
3540
|
'field_suffix' => $element['#field_suffix'],
|
3541
|
);
|
3542
|
|
3543
|
// By default, machine names are restricted to Latin alphanumeric characters.
|
3544
|
// So, default to LTR directionality.
|
3545
|
if (!isset($element['#attributes'])) {
|
3546
|
$element['#attributes'] = array();
|
3547
|
}
|
3548
|
$element['#attributes'] += array('dir' => 'ltr');
|
3549
|
|
3550
|
// The source element defaults to array('name'), but may have been overidden.
|
3551
|
if (empty($element['#machine_name']['source'])) {
|
3552
|
return $element;
|
3553
|
}
|
3554
|
|
3555
|
// Retrieve the form element containing the human-readable name from the
|
3556
|
// complete form in $form_state. By reference, because we may need to append
|
3557
|
// a #field_suffix that will hold the live preview.
|
3558
|
$key_exists = NULL;
|
3559
|
$source = drupal_array_get_nested_value($form_state['complete form'], $element['#machine_name']['source'], $key_exists);
|
3560
|
if (!$key_exists) {
|
3561
|
return $element;
|
3562
|
}
|
3563
|
|
3564
|
$suffix_id = $source['#id'] . '-machine-name-suffix';
|
3565
|
$element['#machine_name']['suffix'] = '#' . $suffix_id;
|
3566
|
|
3567
|
if ($element['#machine_name']['standalone']) {
|
3568
|
$element['#suffix'] .= ' <small id="' . $suffix_id . '"> </small>';
|
3569
|
}
|
3570
|
else {
|
3571
|
// Append a field suffix to the source form element, which will contain
|
3572
|
// the live preview of the machine name.
|
3573
|
$source += array('#field_suffix' => '');
|
3574
|
$source['#field_suffix'] .= ' <small id="' . $suffix_id . '"> </small>';
|
3575
|
|
3576
|
$parents = array_merge($element['#machine_name']['source'], array('#field_suffix'));
|
3577
|
drupal_array_set_nested_value($form_state['complete form'], $parents, $source['#field_suffix']);
|
3578
|
}
|
3579
|
|
3580
|
$js_settings = array(
|
3581
|
'type' => 'setting',
|
3582
|
'data' => array(
|
3583
|
'machineName' => array(
|
3584
|
'#' . $source['#id'] => $element['#machine_name'],
|
3585
|
),
|
3586
|
),
|
3587
|
);
|
3588
|
$element['#attached']['js'][] = 'misc/machine-name.js';
|
3589
|
$element['#attached']['js'][] = $js_settings;
|
3590
|
|
3591
|
return $element;
|
3592
|
}
|
3593
|
|
3594
|
/**
|
3595
|
* Form element validation handler for machine_name elements.
|
3596
|
*
|
3597
|
* Note that #maxlength is validated by _form_validate() already.
|
3598
|
*/
|
3599
|
function form_validate_machine_name(&$element, &$form_state) {
|
3600
|
// Verify that the machine name not only consists of replacement tokens.
|
3601
|
if (preg_match('@^' . $element['#machine_name']['replace'] . '+$@', $element['#value'])) {
|
3602
|
form_error($element, t('The machine-readable name must contain unique characters.'));
|
3603
|
}
|
3604
|
|
3605
|
// Verify that the machine name contains no disallowed characters.
|
3606
|
if (preg_match('@' . $element['#machine_name']['replace_pattern'] . '@', $element['#value'])) {
|
3607
|
if (!isset($element['#machine_name']['error'])) {
|
3608
|
// Since a hyphen is the most common alternative replacement character,
|
3609
|
// a corresponding validation error message is supported here.
|
3610
|
if ($element['#machine_name']['replace'] == '-') {
|
3611
|
form_error($element, t('The machine-readable name must contain only lowercase letters, numbers, and hyphens.'));
|
3612
|
}
|
3613
|
// Otherwise, we assume the default (underscore).
|
3614
|
else {
|
3615
|
form_error($element, t('The machine-readable name must contain only lowercase letters, numbers, and underscores.'));
|
3616
|
}
|
3617
|
}
|
3618
|
else {
|
3619
|
form_error($element, $element['#machine_name']['error']);
|
3620
|
}
|
3621
|
}
|
3622
|
|
3623
|
// Verify that the machine name is unique.
|
3624
|
if ($element['#default_value'] !== $element['#value']) {
|
3625
|
$function = $element['#machine_name']['exists'];
|
3626
|
if ($function($element['#value'], $element, $form_state)) {
|
3627
|
form_error($element, t('The machine-readable name is already in use. It must be unique.'));
|
3628
|
}
|
3629
|
}
|
3630
|
}
|
3631
|
|
3632
|
/**
|
3633
|
* Arranges fieldsets into groups.
|
3634
|
*
|
3635
|
* @param $element
|
3636
|
* An associative array containing the properties and children of the
|
3637
|
* fieldset. Note that $element must be taken by reference here, so processed
|
3638
|
* child elements are taken over into $form_state.
|
3639
|
* @param $form_state
|
3640
|
* The $form_state array for the form this fieldset belongs to.
|
3641
|
*
|
3642
|
* @return
|
3643
|
* The processed element.
|
3644
|
*/
|
3645
|
function form_process_fieldset(&$element, &$form_state) {
|
3646
|
$parents = implode('][', $element['#parents']);
|
3647
|
|
3648
|
// Each fieldset forms a new group. The #type 'vertical_tabs' basically only
|
3649
|
// injects a new fieldset.
|
3650
|
$form_state['groups'][$parents]['#group_exists'] = TRUE;
|
3651
|
$element['#groups'] = &$form_state['groups'];
|
3652
|
|
3653
|
// Process vertical tabs group member fieldsets.
|
3654
|
if (isset($element['#group'])) {
|
3655
|
// Add this fieldset to the defined group (by reference).
|
3656
|
$group = $element['#group'];
|
3657
|
$form_state['groups'][$group][] = &$element;
|
3658
|
}
|
3659
|
|
3660
|
// Contains form element summary functionalities.
|
3661
|
$element['#attached']['library'][] = array('system', 'drupal.form');
|
3662
|
|
3663
|
// The .form-wrapper class is required for #states to treat fieldsets like
|
3664
|
// containers.
|
3665
|
if (!isset($element['#attributes']['class'])) {
|
3666
|
$element['#attributes']['class'] = array();
|
3667
|
}
|
3668
|
|
3669
|
// Collapsible fieldsets
|
3670
|
if (!empty($element['#collapsible'])) {
|
3671
|
$element['#attached']['library'][] = array('system', 'drupal.collapse');
|
3672
|
$element['#attributes']['class'][] = 'collapsible';
|
3673
|
if (!empty($element['#collapsed'])) {
|
3674
|
$element['#attributes']['class'][] = 'collapsed';
|
3675
|
}
|
3676
|
}
|
3677
|
|
3678
|
return $element;
|
3679
|
}
|
3680
|
|
3681
|
/**
|
3682
|
* Adds members of this group as actual elements for rendering.
|
3683
|
*
|
3684
|
* @param $element
|
3685
|
* An associative array containing the properties and children of the
|
3686
|
* fieldset.
|
3687
|
*
|
3688
|
* @return
|
3689
|
* The modified element with all group members.
|
3690
|
*/
|
3691
|
function form_pre_render_fieldset($element) {
|
3692
|
// Fieldsets may be rendered outside of a Form API context.
|
3693
|
if (!isset($element['#parents']) || !isset($element['#groups'])) {
|
3694
|
return $element;
|
3695
|
}
|
3696
|
// Inject group member elements belonging to this group.
|
3697
|
$parents = implode('][', $element['#parents']);
|
3698
|
$children = element_children($element['#groups'][$parents]);
|
3699
|
if (!empty($children)) {
|
3700
|
foreach ($children as $key) {
|
3701
|
// Break references and indicate that the element should be rendered as
|
3702
|
// group member.
|
3703
|
$child = (array) $element['#groups'][$parents][$key];
|
3704
|
$child['#group_fieldset'] = TRUE;
|
3705
|
// Inject the element as new child element.
|
3706
|
$element[] = $child;
|
3707
|
|
3708
|
$sort = TRUE;
|
3709
|
}
|
3710
|
// Re-sort the element's children if we injected group member elements.
|
3711
|
if (isset($sort)) {
|
3712
|
$element['#sorted'] = FALSE;
|
3713
|
}
|
3714
|
}
|
3715
|
|
3716
|
if (isset($element['#group'])) {
|
3717
|
$group = $element['#group'];
|
3718
|
// If this element belongs to a group, but the group-holding element does
|
3719
|
// not exist, we need to render it (at its original location).
|
3720
|
if (!isset($element['#groups'][$group]['#group_exists'])) {
|
3721
|
// Intentionally empty to clarify the flow; we simply return $element.
|
3722
|
}
|
3723
|
// If we injected this element into the group, then we want to render it.
|
3724
|
elseif (!empty($element['#group_fieldset'])) {
|
3725
|
// Intentionally empty to clarify the flow; we simply return $element.
|
3726
|
}
|
3727
|
// Otherwise, this element belongs to a group and the group exists, so we do
|
3728
|
// not render it.
|
3729
|
elseif (element_children($element['#groups'][$group])) {
|
3730
|
$element['#printed'] = TRUE;
|
3731
|
}
|
3732
|
}
|
3733
|
|
3734
|
return $element;
|
3735
|
}
|
3736
|
|
3737
|
/**
|
3738
|
* Creates a group formatted as vertical tabs.
|
3739
|
*
|
3740
|
* @param $element
|
3741
|
* An associative array containing the properties and children of the
|
3742
|
* fieldset.
|
3743
|
* @param $form_state
|
3744
|
* The $form_state array for the form this vertical tab widget belongs to.
|
3745
|
*
|
3746
|
* @return
|
3747
|
* The processed element.
|
3748
|
*/
|
3749
|
function form_process_vertical_tabs($element, &$form_state) {
|
3750
|
// Inject a new fieldset as child, so that form_process_fieldset() processes
|
3751
|
// this fieldset like any other fieldset.
|
3752
|
$element['group'] = array(
|
3753
|
'#type' => 'fieldset',
|
3754
|
'#theme_wrappers' => array(),
|
3755
|
'#parents' => $element['#parents'],
|
3756
|
);
|
3757
|
|
3758
|
// The JavaScript stores the currently selected tab in this hidden
|
3759
|
// field so that the active tab can be restored the next time the
|
3760
|
// form is rendered, e.g. on preview pages or when form validation
|
3761
|
// fails.
|
3762
|
$name = implode('__', $element['#parents']);
|
3763
|
if (isset($form_state['values'][$name . '__active_tab'])) {
|
3764
|
$element['#default_tab'] = $form_state['values'][$name . '__active_tab'];
|
3765
|
}
|
3766
|
$element[$name . '__active_tab'] = array(
|
3767
|
'#type' => 'hidden',
|
3768
|
'#default_value' => $element['#default_tab'],
|
3769
|
'#attributes' => array('class' => array('vertical-tabs-active-tab')),
|
3770
|
);
|
3771
|
|
3772
|
return $element;
|
3773
|
}
|
3774
|
|
3775
|
/**
|
3776
|
* Returns HTML for an element's children fieldsets as vertical tabs.
|
3777
|
*
|
3778
|
* @param $variables
|
3779
|
* An associative array containing:
|
3780
|
* - element: An associative array containing the properties and children of
|
3781
|
* the fieldset. Properties used: #children.
|
3782
|
*
|
3783
|
* @ingroup themeable
|
3784
|
*/
|
3785
|
function theme_vertical_tabs($variables) {
|
3786
|
$element = $variables['element'];
|
3787
|
// Add required JavaScript and Stylesheet.
|
3788
|
drupal_add_library('system', 'drupal.vertical-tabs');
|
3789
|
|
3790
|
$output = '<h2 class="element-invisible">' . t('Vertical Tabs') . '</h2>';
|
3791
|
$output .= '<div class="vertical-tabs-panes">' . $element['#children'] . '</div>';
|
3792
|
return $output;
|
3793
|
}
|
3794
|
|
3795
|
/**
|
3796
|
* Returns HTML for a submit button form element.
|
3797
|
*
|
3798
|
* @param $variables
|
3799
|
* An associative array containing:
|
3800
|
* - element: An associative array containing the properties of the element.
|
3801
|
* Properties used: #attributes, #button_type, #name, #value.
|
3802
|
*
|
3803
|
* @ingroup themeable
|
3804
|
*/
|
3805
|
function theme_submit($variables) {
|
3806
|
return theme('button', $variables['element']);
|
3807
|
}
|
3808
|
|
3809
|
/**
|
3810
|
* Returns HTML for a button form element.
|
3811
|
*
|
3812
|
* @param $variables
|
3813
|
* An associative array containing:
|
3814
|
* - element: An associative array containing the properties of the element.
|
3815
|
* Properties used: #attributes, #button_type, #name, #value.
|
3816
|
*
|
3817
|
* @ingroup themeable
|
3818
|
*/
|
3819
|
function theme_button($variables) {
|
3820
|
$element = $variables['element'];
|
3821
|
$element['#attributes']['type'] = 'submit';
|
3822
|
element_set_attributes($element, array('id', 'name', 'value'));
|
3823
|
|
3824
|
$element['#attributes']['class'][] = 'form-' . $element['#button_type'];
|
3825
|
if (!empty($element['#attributes']['disabled'])) {
|
3826
|
$element['#attributes']['class'][] = 'form-button-disabled';
|
3827
|
}
|
3828
|
|
3829
|
return '<input' . drupal_attributes($element['#attributes']) . ' />';
|
3830
|
}
|
3831
|
|
3832
|
/**
|
3833
|
* Returns HTML for an image button form element.
|
3834
|
*
|
3835
|
* @param $variables
|
3836
|
* An associative array containing:
|
3837
|
* - element: An associative array containing the properties of the element.
|
3838
|
* Properties used: #attributes, #button_type, #name, #value, #title, #src.
|
3839
|
*
|
3840
|
* @ingroup themeable
|
3841
|
*/
|
3842
|
function theme_image_button($variables) {
|
3843
|
$element = $variables['element'];
|
3844
|
$element['#attributes']['type'] = 'image';
|
3845
|
element_set_attributes($element, array('id', 'name', 'value'));
|
3846
|
|
3847
|
$element['#attributes']['src'] = file_create_url($element['#src']);
|
3848
|
if (!empty($element['#title'])) {
|
3849
|
$element['#attributes']['alt'] = $element['#title'];
|
3850
|
$element['#attributes']['title'] = $element['#title'];
|
3851
|
}
|
3852
|
|
3853
|
$element['#attributes']['class'][] = 'form-' . $element['#button_type'];
|
3854
|
if (!empty($element['#attributes']['disabled'])) {
|
3855
|
$element['#attributes']['class'][] = 'form-button-disabled';
|
3856
|
}
|
3857
|
|
3858
|
return '<input' . drupal_attributes($element['#attributes']) . ' />';
|
3859
|
}
|
3860
|
|
3861
|
/**
|
3862
|
* Returns HTML for a hidden form element.
|
3863
|
*
|
3864
|
* @param $variables
|
3865
|
* An associative array containing:
|
3866
|
* - element: An associative array containing the properties of the element.
|
3867
|
* Properties used: #name, #value, #attributes.
|
3868
|
*
|
3869
|
* @ingroup themeable
|
3870
|
*/
|
3871
|
function theme_hidden($variables) {
|
3872
|
$element = $variables['element'];
|
3873
|
$element['#attributes']['type'] = 'hidden';
|
3874
|
element_set_attributes($element, array('name', 'value'));
|
3875
|
return '<input' . drupal_attributes($element['#attributes']) . " />\n";
|
3876
|
}
|
3877
|
|
3878
|
/**
|
3879
|
* Returns HTML for a textfield form element.
|
3880
|
*
|
3881
|
* @param $variables
|
3882
|
* An associative array containing:
|
3883
|
* - element: An associative array containing the properties of the element.
|
3884
|
* Properties used: #title, #value, #description, #size, #maxlength,
|
3885
|
* #required, #attributes, #autocomplete_path.
|
3886
|
*
|
3887
|
* @ingroup themeable
|
3888
|
*/
|
3889
|
function theme_textfield($variables) {
|
3890
|
$element = $variables['element'];
|
3891
|
$element['#attributes']['type'] = 'text';
|
3892
|
element_set_attributes($element, array('id', 'name', 'value', 'size', 'maxlength'));
|
3893
|
_form_set_class($element, array('form-text'));
|
3894
|
|
3895
|
$extra = '';
|
3896
|
if ($element['#autocomplete_path'] && drupal_valid_path($element['#autocomplete_path'])) {
|
3897
|
drupal_add_library('system', 'drupal.autocomplete');
|
3898
|
$element['#attributes']['class'][] = 'form-autocomplete';
|
3899
|
|
3900
|
$attributes = array();
|
3901
|
$attributes['type'] = 'hidden';
|
3902
|
$attributes['id'] = $element['#attributes']['id'] . '-autocomplete';
|
3903
|
$attributes['value'] = url($element['#autocomplete_path'], array('absolute' => TRUE));
|
3904
|
$attributes['disabled'] = 'disabled';
|
3905
|
$attributes['class'][] = 'autocomplete';
|
3906
|
$extra = '<input' . drupal_attributes($attributes) . ' />';
|
3907
|
}
|
3908
|
|
3909
|
$output = '<input' . drupal_attributes($element['#attributes']) . ' />';
|
3910
|
|
3911
|
return $output . $extra;
|
3912
|
}
|
3913
|
|
3914
|
/**
|
3915
|
* Returns HTML for a form.
|
3916
|
*
|
3917
|
* @param $variables
|
3918
|
* An associative array containing:
|
3919
|
* - element: An associative array containing the properties of the element.
|
3920
|
* Properties used: #action, #method, #attributes, #children
|
3921
|
*
|
3922
|
* @ingroup themeable
|
3923
|
*/
|
3924
|
function theme_form($variables) {
|
3925
|
$element = $variables['element'];
|
3926
|
if (isset($element['#action'])) {
|
3927
|
$element['#attributes']['action'] = drupal_strip_dangerous_protocols($element['#action']);
|
3928
|
}
|
3929
|
element_set_attributes($element, array('method', 'id'));
|
3930
|
if (empty($element['#attributes']['accept-charset'])) {
|
3931
|
$element['#attributes']['accept-charset'] = "UTF-8";
|
3932
|
}
|
3933
|
// Anonymous DIV to satisfy XHTML compliance.
|
3934
|
return '<form' . drupal_attributes($element['#attributes']) . '><div>' . $element['#children'] . '</div></form>';
|
3935
|
}
|
3936
|
|
3937
|
/**
|
3938
|
* Returns HTML for a textarea form element.
|
3939
|
*
|
3940
|
* @param $variables
|
3941
|
* An associative array containing:
|
3942
|
* - element: An associative array containing the properties of the element.
|
3943
|
* Properties used: #title, #value, #description, #rows, #cols, #required,
|
3944
|
* #attributes
|
3945
|
*
|
3946
|
* @ingroup themeable
|
3947
|
*/
|
3948
|
function theme_textarea($variables) {
|
3949
|
$element = $variables['element'];
|
3950
|
element_set_attributes($element, array('id', 'name', 'cols', 'rows'));
|
3951
|
_form_set_class($element, array('form-textarea'));
|
3952
|
|
3953
|
$wrapper_attributes = array(
|
3954
|
'class' => array('form-textarea-wrapper'),
|
3955
|
);
|
3956
|
|
3957
|
// Add resizable behavior.
|
3958
|
if (!empty($element['#resizable'])) {
|
3959
|
drupal_add_library('system', 'drupal.textarea');
|
3960
|
$wrapper_attributes['class'][] = 'resizable';
|
3961
|
}
|
3962
|
|
3963
|
$output = '<div' . drupal_attributes($wrapper_attributes) . '>';
|
3964
|
$output .= '<textarea' . drupal_attributes($element['#attributes']) . '>' . check_plain($element['#value']) . '</textarea>';
|
3965
|
$output .= '</div>';
|
3966
|
return $output;
|
3967
|
}
|
3968
|
|
3969
|
/**
|
3970
|
* Returns HTML for a password form element.
|
3971
|
*
|
3972
|
* @param $variables
|
3973
|
* An associative array containing:
|
3974
|
* - element: An associative array containing the properties of the element.
|
3975
|
* Properties used: #title, #value, #description, #size, #maxlength,
|
3976
|
* #required, #attributes.
|
3977
|
*
|
3978
|
* @ingroup themeable
|
3979
|
*/
|
3980
|
function theme_password($variables) {
|
3981
|
$element = $variables['element'];
|
3982
|
$element['#attributes']['type'] = 'password';
|
3983
|
element_set_attributes($element, array('id', 'name', 'size', 'maxlength'));
|
3984
|
_form_set_class($element, array('form-text'));
|
3985
|
|
3986
|
return '<input' . drupal_attributes($element['#attributes']) . ' />';
|
3987
|
}
|
3988
|
|
3989
|
/**
|
3990
|
* Expands a weight element into a select element.
|
3991
|
*/
|
3992
|
function form_process_weight($element) {
|
3993
|
$element['#is_weight'] = TRUE;
|
3994
|
|
3995
|
// If the number of options is small enough, use a select field.
|
3996
|
$max_elements = variable_get('drupal_weight_select_max', DRUPAL_WEIGHT_SELECT_MAX);
|
3997
|
if ($element['#delta'] <= $max_elements) {
|
3998
|
$element['#type'] = 'select';
|
3999
|
for ($n = (-1 * $element['#delta']); $n <= $element['#delta']; $n++) {
|
4000
|
$weights[$n] = $n;
|
4001
|
}
|
4002
|
$element['#options'] = $weights;
|
4003
|
$element += element_info('select');
|
4004
|
}
|
4005
|
// Otherwise, use a text field.
|
4006
|
else {
|
4007
|
$element['#type'] = 'textfield';
|
4008
|
// Use a field big enough to fit most weights.
|
4009
|
$element['#size'] = 10;
|
4010
|
$element['#element_validate'] = array('element_validate_integer');
|
4011
|
$element += element_info('textfield');
|
4012
|
}
|
4013
|
|
4014
|
return $element;
|
4015
|
}
|
4016
|
|
4017
|
/**
|
4018
|
* Returns HTML for a file upload form element.
|
4019
|
*
|
4020
|
* For assistance with handling the uploaded file correctly, see the API
|
4021
|
* provided by file.inc.
|
4022
|
*
|
4023
|
* @param $variables
|
4024
|
* An associative array containing:
|
4025
|
* - element: An associative array containing the properties of the element.
|
4026
|
* Properties used: #title, #name, #size, #description, #required,
|
4027
|
* #attributes.
|
4028
|
*
|
4029
|
* @ingroup themeable
|
4030
|
*/
|
4031
|
function theme_file($variables) {
|
4032
|
$element = $variables['element'];
|
4033
|
$element['#attributes']['type'] = 'file';
|
4034
|
element_set_attributes($element, array('id', 'name', 'size'));
|
4035
|
_form_set_class($element, array('form-file'));
|
4036
|
|
4037
|
return '<input' . drupal_attributes($element['#attributes']) . ' />';
|
4038
|
}
|
4039
|
|
4040
|
/**
|
4041
|
* Returns HTML for a form element.
|
4042
|
*
|
4043
|
* Each form element is wrapped in a DIV container having the following CSS
|
4044
|
* classes:
|
4045
|
* - form-item: Generic for all form elements.
|
4046
|
* - form-type-#type: The internal element #type.
|
4047
|
* - form-item-#name: The internal form element #name (usually derived from the
|
4048
|
* $form structure and set via form_builder()).
|
4049
|
* - form-disabled: Only set if the form element is #disabled.
|
4050
|
*
|
4051
|
* In addition to the element itself, the DIV contains a label for the element
|
4052
|
* based on the optional #title_display property, and an optional #description.
|
4053
|
*
|
4054
|
* The optional #title_display property can have these values:
|
4055
|
* - before: The label is output before the element. This is the default.
|
4056
|
* The label includes the #title and the required marker, if #required.
|
4057
|
* - after: The label is output after the element. For example, this is used
|
4058
|
* for radio and checkbox #type elements as set in system_element_info().
|
4059
|
* If the #title is empty but the field is #required, the label will
|
4060
|
* contain only the required marker.
|
4061
|
* - invisible: Labels are critical for screen readers to enable them to
|
4062
|
* properly navigate through forms but can be visually distracting. This
|
4063
|
* property hides the label for everyone except screen readers.
|
4064
|
* - attribute: Set the title attribute on the element to create a tooltip
|
4065
|
* but output no label element. This is supported only for checkboxes
|
4066
|
* and radios in form_pre_render_conditional_form_element(). It is used
|
4067
|
* where a visual label is not needed, such as a table of checkboxes where
|
4068
|
* the row and column provide the context. The tooltip will include the
|
4069
|
* title and required marker.
|
4070
|
*
|
4071
|
* If the #title property is not set, then the label and any required marker
|
4072
|
* will not be output, regardless of the #title_display or #required values.
|
4073
|
* This can be useful in cases such as the password_confirm element, which
|
4074
|
* creates children elements that have their own labels and required markers,
|
4075
|
* but the parent element should have neither. Use this carefully because a
|
4076
|
* field without an associated label can cause accessibility challenges.
|
4077
|
*
|
4078
|
* @param $variables
|
4079
|
* An associative array containing:
|
4080
|
* - element: An associative array containing the properties of the element.
|
4081
|
* Properties used: #title, #title_display, #description, #id, #required,
|
4082
|
* #children, #type, #name.
|
4083
|
*
|
4084
|
* @ingroup themeable
|
4085
|
*/
|
4086
|
function theme_form_element($variables) {
|
4087
|
$element = &$variables['element'];
|
4088
|
|
4089
|
// This function is invoked as theme wrapper, but the rendered form element
|
4090
|
// may not necessarily have been processed by form_builder().
|
4091
|
$element += array(
|
4092
|
'#title_display' => 'before',
|
4093
|
);
|
4094
|
|
4095
|
// Add element #id for #type 'item'.
|
4096
|
if (isset($element['#markup']) && !empty($element['#id'])) {
|
4097
|
$attributes['id'] = $element['#id'];
|
4098
|
}
|
4099
|
// Add element's #type and #name as class to aid with JS/CSS selectors.
|
4100
|
$attributes['class'] = array('form-item');
|
4101
|
if (!empty($element['#type'])) {
|
4102
|
$attributes['class'][] = 'form-type-' . strtr($element['#type'], '_', '-');
|
4103
|
}
|
4104
|
if (!empty($element['#name'])) {
|
4105
|
$attributes['class'][] = 'form-item-' . strtr($element['#name'], array(' ' => '-', '_' => '-', '[' => '-', ']' => ''));
|
4106
|
}
|
4107
|
// Add a class for disabled elements to facilitate cross-browser styling.
|
4108
|
if (!empty($element['#attributes']['disabled'])) {
|
4109
|
$attributes['class'][] = 'form-disabled';
|
4110
|
}
|
4111
|
$output = '<div' . drupal_attributes($attributes) . '>' . "\n";
|
4112
|
|
4113
|
// If #title is not set, we don't display any label or required marker.
|
4114
|
if (!isset($element['#title'])) {
|
4115
|
$element['#title_display'] = 'none';
|
4116
|
}
|
4117
|
$prefix = isset($element['#field_prefix']) ? '<span class="field-prefix">' . $element['#field_prefix'] . '</span> ' : '';
|
4118
|
$suffix = isset($element['#field_suffix']) ? ' <span class="field-suffix">' . $element['#field_suffix'] . '</span>' : '';
|
4119
|
|
4120
|
switch ($element['#title_display']) {
|
4121
|
case 'before':
|
4122
|
case 'invisible':
|
4123
|
$output .= ' ' . theme('form_element_label', $variables);
|
4124
|
$output .= ' ' . $prefix . $element['#children'] . $suffix . "\n";
|
4125
|
break;
|
4126
|
|
4127
|
case 'after':
|
4128
|
$output .= ' ' . $prefix . $element['#children'] . $suffix;
|
4129
|
$output .= ' ' . theme('form_element_label', $variables) . "\n";
|
4130
|
break;
|
4131
|
|
4132
|
case 'none':
|
4133
|
case 'attribute':
|
4134
|
// Output no label and no required marker, only the children.
|
4135
|
$output .= ' ' . $prefix . $element['#children'] . $suffix . "\n";
|
4136
|
break;
|
4137
|
}
|
4138
|
|
4139
|
if (!empty($element['#description'])) {
|
4140
|
$output .= '<div class="description">' . $element['#description'] . "</div>\n";
|
4141
|
}
|
4142
|
|
4143
|
$output .= "</div>\n";
|
4144
|
|
4145
|
return $output;
|
4146
|
}
|
4147
|
|
4148
|
/**
|
4149
|
* Returns HTML for a marker for required form elements.
|
4150
|
*
|
4151
|
* @param $variables
|
4152
|
* An associative array containing:
|
4153
|
* - element: An associative array containing the properties of the element.
|
4154
|
*
|
4155
|
* @ingroup themeable
|
4156
|
*/
|
4157
|
function theme_form_required_marker($variables) {
|
4158
|
// This is also used in the installer, pre-database setup.
|
4159
|
$t = get_t();
|
4160
|
$attributes = array(
|
4161
|
'class' => 'form-required',
|
4162
|
'title' => $t('This field is required.'),
|
4163
|
);
|
4164
|
return '<span' . drupal_attributes($attributes) . '>*</span>';
|
4165
|
}
|
4166
|
|
4167
|
/**
|
4168
|
* Returns HTML for a form element label and required marker.
|
4169
|
*
|
4170
|
* Form element labels include the #title and a #required marker. The label is
|
4171
|
* associated with the element itself by the element #id. Labels may appear
|
4172
|
* before or after elements, depending on theme_form_element() and
|
4173
|
* #title_display.
|
4174
|
*
|
4175
|
* This function will not be called for elements with no labels, depending on
|
4176
|
* #title_display. For elements that have an empty #title and are not required,
|
4177
|
* this function will output no label (''). For required elements that have an
|
4178
|
* empty #title, this will output the required marker alone within the label.
|
4179
|
* The label will use the #id to associate the marker with the field that is
|
4180
|
* required. That is especially important for screenreader users to know
|
4181
|
* which field is required.
|
4182
|
*
|
4183
|
* @param $variables
|
4184
|
* An associative array containing:
|
4185
|
* - element: An associative array containing the properties of the element.
|
4186
|
* Properties used: #required, #title, #id, #value, #description.
|
4187
|
*
|
4188
|
* @ingroup themeable
|
4189
|
*/
|
4190
|
function theme_form_element_label($variables) {
|
4191
|
$element = $variables['element'];
|
4192
|
// This is also used in the installer, pre-database setup.
|
4193
|
$t = get_t();
|
4194
|
|
4195
|
// If title and required marker are both empty, output no label.
|
4196
|
if ((!isset($element['#title']) || $element['#title'] === '') && empty($element['#required'])) {
|
4197
|
return '';
|
4198
|
}
|
4199
|
|
4200
|
// If the element is required, a required marker is appended to the label.
|
4201
|
$required = !empty($element['#required']) ? theme('form_required_marker', array('element' => $element)) : '';
|
4202
|
|
4203
|
$title = filter_xss_admin($element['#title']);
|
4204
|
|
4205
|
$attributes = array();
|
4206
|
// Style the label as class option to display inline with the element.
|
4207
|
if ($element['#title_display'] == 'after') {
|
4208
|
$attributes['class'] = 'option';
|
4209
|
}
|
4210
|
// Show label only to screen readers to avoid disruption in visual flows.
|
4211
|
elseif ($element['#title_display'] == 'invisible') {
|
4212
|
$attributes['class'] = 'element-invisible';
|
4213
|
}
|
4214
|
|
4215
|
if (!empty($element['#id'])) {
|
4216
|
$attributes['for'] = $element['#id'];
|
4217
|
}
|
4218
|
|
4219
|
// The leading whitespace helps visually separate fields from inline labels.
|
4220
|
return ' <label' . drupal_attributes($attributes) . '>' . $t('!title !required', array('!title' => $title, '!required' => $required)) . "</label>\n";
|
4221
|
}
|
4222
|
|
4223
|
/**
|
4224
|
* Sets a form element's class attribute.
|
4225
|
*
|
4226
|
* Adds 'required' and 'error' classes as needed.
|
4227
|
*
|
4228
|
* @param $element
|
4229
|
* The form element.
|
4230
|
* @param $name
|
4231
|
* Array of new class names to be added.
|
4232
|
*/
|
4233
|
function _form_set_class(&$element, $class = array()) {
|
4234
|
if (!empty($class)) {
|
4235
|
if (!isset($element['#attributes']['class'])) {
|
4236
|
$element['#attributes']['class'] = array();
|
4237
|
}
|
4238
|
$element['#attributes']['class'] = array_merge($element['#attributes']['class'], $class);
|
4239
|
}
|
4240
|
// This function is invoked from form element theme functions, but the
|
4241
|
// rendered form element may not necessarily have been processed by
|
4242
|
// form_builder().
|
4243
|
if (!empty($element['#required'])) {
|
4244
|
$element['#attributes']['class'][] = 'required';
|
4245
|
}
|
4246
|
if (isset($element['#parents']) && form_get_error($element) !== NULL && !empty($element['#validated'])) {
|
4247
|
$element['#attributes']['class'][] = 'error';
|
4248
|
}
|
4249
|
}
|
4250
|
|
4251
|
/**
|
4252
|
* Form element validation handler for integer elements.
|
4253
|
*/
|
4254
|
function element_validate_integer($element, &$form_state) {
|
4255
|
$value = $element['#value'];
|
4256
|
if ($value !== '' && (!is_numeric($value) || intval($value) != $value)) {
|
4257
|
form_error($element, t('%name must be an integer.', array('%name' => $element['#title'])));
|
4258
|
}
|
4259
|
}
|
4260
|
|
4261
|
/**
|
4262
|
* Form element validation handler for integer elements that must be positive.
|
4263
|
*/
|
4264
|
function element_validate_integer_positive($element, &$form_state) {
|
4265
|
$value = $element['#value'];
|
4266
|
if ($value !== '' && (!is_numeric($value) || intval($value) != $value || $value <= 0)) {
|
4267
|
form_error($element, t('%name must be a positive integer.', array('%name' => $element['#title'])));
|
4268
|
}
|
4269
|
}
|
4270
|
|
4271
|
/**
|
4272
|
* Form element validation handler for number elements.
|
4273
|
*/
|
4274
|
function element_validate_number($element, &$form_state) {
|
4275
|
$value = $element['#value'];
|
4276
|
if ($value != '' && !is_numeric($value)) {
|
4277
|
form_error($element, t('%name must be a number.', array('%name' => $element['#title'])));
|
4278
|
}
|
4279
|
}
|
4280
|
|
4281
|
/**
|
4282
|
* @} End of "defgroup form_api".
|
4283
|
*/
|
4284
|
|
4285
|
/**
|
4286
|
* @defgroup batch Batch operations
|
4287
|
* @{
|
4288
|
* Creates and processes batch operations.
|
4289
|
*
|
4290
|
* Functions allowing forms processing to be spread out over several page
|
4291
|
* requests, thus ensuring that the processing does not get interrupted
|
4292
|
* because of a PHP timeout, while allowing the user to receive feedback
|
4293
|
* on the progress of the ongoing operations.
|
4294
|
*
|
4295
|
* The API is primarily designed to integrate nicely with the Form API
|
4296
|
* workflow, but can also be used by non-Form API scripts (like update.php)
|
4297
|
* or even simple page callbacks (which should probably be used sparingly).
|
4298
|
*
|
4299
|
* Example:
|
4300
|
* @code
|
4301
|
* $batch = array(
|
4302
|
* 'title' => t('Exporting'),
|
4303
|
* 'operations' => array(
|
4304
|
* array('my_function_1', array($account->uid, 'story')),
|
4305
|
* array('my_function_2', array()),
|
4306
|
* ),
|
4307
|
* 'finished' => 'my_finished_callback',
|
4308
|
* 'file' => 'path_to_file_containing_myfunctions',
|
4309
|
* );
|
4310
|
* batch_set($batch);
|
4311
|
* // Only needed if not inside a form _submit handler.
|
4312
|
* // Setting redirect in batch_process.
|
4313
|
* batch_process('node/1');
|
4314
|
* @endcode
|
4315
|
*
|
4316
|
* Note: if the batch 'title', 'init_message', 'progress_message', or
|
4317
|
* 'error_message' could contain any user input, it is the responsibility of
|
4318
|
* the code calling batch_set() to sanitize them first with a function like
|
4319
|
* check_plain() or filter_xss(). Furthermore, if the batch operation
|
4320
|
* returns any user input in the 'results' or 'message' keys of $context,
|
4321
|
* it must also sanitize them first.
|
4322
|
*
|
4323
|
* Sample callback_batch_operation():
|
4324
|
* @code
|
4325
|
* // Simple and artificial: load a node of a given type for a given user
|
4326
|
* function my_function_1($uid, $type, &$context) {
|
4327
|
* // The $context array gathers batch context information about the execution (read),
|
4328
|
* // as well as 'return values' for the current operation (write)
|
4329
|
* // The following keys are provided :
|
4330
|
* // 'results' (read / write): The array of results gathered so far by
|
4331
|
* // the batch processing, for the current operation to append its own.
|
4332
|
* // 'message' (write): A text message displayed in the progress page.
|
4333
|
* // The following keys allow for multi-step operations :
|
4334
|
* // 'sandbox' (read / write): An array that can be freely used to
|
4335
|
* // store persistent data between iterations. It is recommended to
|
4336
|
* // use this instead of $_SESSION, which is unsafe if the user
|
4337
|
* // continues browsing in a separate window while the batch is processing.
|
4338
|
* // 'finished' (write): A float number between 0 and 1 informing
|
4339
|
* // the processing engine of the completion level for the operation.
|
4340
|
* // 1 (or no value explicitly set) means the operation is finished
|
4341
|
* // and the batch processing can continue to the next operation.
|
4342
|
*
|
4343
|
* $node = node_load(array('uid' => $uid, 'type' => $type));
|
4344
|
* $context['results'][] = $node->nid . ' : ' . check_plain($node->title);
|
4345
|
* $context['message'] = check_plain($node->title);
|
4346
|
* }
|
4347
|
*
|
4348
|
* // More advanced example: multi-step operation - load all nodes, five by five
|
4349
|
* function my_function_2(&$context) {
|
4350
|
* if (empty($context['sandbox'])) {
|
4351
|
* $context['sandbox']['progress'] = 0;
|
4352
|
* $context['sandbox']['current_node'] = 0;
|
4353
|
* $context['sandbox']['max'] = db_query('SELECT COUNT(DISTINCT nid) FROM {node}')->fetchField();
|
4354
|
* }
|
4355
|
* $limit = 5;
|
4356
|
* $result = db_select('node')
|
4357
|
* ->fields('node', array('nid'))
|
4358
|
* ->condition('nid', $context['sandbox']['current_node'], '>')
|
4359
|
* ->orderBy('nid')
|
4360
|
* ->range(0, $limit)
|
4361
|
* ->execute();
|
4362
|
* foreach ($result as $row) {
|
4363
|
* $node = node_load($row->nid, NULL, TRUE);
|
4364
|
* $context['results'][] = $node->nid . ' : ' . check_plain($node->title);
|
4365
|
* $context['sandbox']['progress']++;
|
4366
|
* $context['sandbox']['current_node'] = $node->nid;
|
4367
|
* $context['message'] = check_plain($node->title);
|
4368
|
* }
|
4369
|
* if ($context['sandbox']['progress'] != $context['sandbox']['max']) {
|
4370
|
* $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max'];
|
4371
|
* }
|
4372
|
* }
|
4373
|
* @endcode
|
4374
|
*
|
4375
|
* Sample callback_batch_finished():
|
4376
|
* @code
|
4377
|
* function batch_test_finished($success, $results, $operations) {
|
4378
|
* // The 'success' parameter means no fatal PHP errors were detected. All
|
4379
|
* // other error management should be handled using 'results'.
|
4380
|
* if ($success) {
|
4381
|
* $message = format_plural(count($results), 'One post processed.', '@count posts processed.');
|
4382
|
* }
|
4383
|
* else {
|
4384
|
* $message = t('Finished with an error.');
|
4385
|
* }
|
4386
|
* drupal_set_message($message);
|
4387
|
* // Providing data for the redirected page is done through $_SESSION.
|
4388
|
* foreach ($results as $result) {
|
4389
|
* $items[] = t('Loaded node %title.', array('%title' => $result));
|
4390
|
* }
|
4391
|
* $_SESSION['my_batch_results'] = $items;
|
4392
|
* }
|
4393
|
* @endcode
|
4394
|
*/
|
4395
|
|
4396
|
/**
|
4397
|
* Adds a new batch.
|
4398
|
*
|
4399
|
* Batch operations are added as new batch sets. Batch sets are used to spread
|
4400
|
* processing (primarily, but not exclusively, forms processing) over several
|
4401
|
* page requests. This helps to ensure that the processing is not interrupted
|
4402
|
* due to PHP timeouts, while users are still able to receive feedback on the
|
4403
|
* progress of the ongoing operations. Combining related operations into
|
4404
|
* distinct batch sets provides clean code independence for each batch set,
|
4405
|
* ensuring that two or more batches, submitted independently, can be processed
|
4406
|
* without mutual interference. Each batch set may specify its own set of
|
4407
|
* operations and results, produce its own UI messages, and trigger its own
|
4408
|
* 'finished' callback. Batch sets are processed sequentially, with the progress
|
4409
|
* bar starting afresh for each new set.
|
4410
|
*
|
4411
|
* @param $batch_definition
|
4412
|
* An associative array defining the batch, with the following elements (all
|
4413
|
* are optional except as noted):
|
4414
|
* - operations: (required) Array of operations to be performed, where each
|
4415
|
* item is an array consisting of the name of an implementation of
|
4416
|
* callback_batch_operation() and an array of parameter.
|
4417
|
* Example:
|
4418
|
* @code
|
4419
|
* array(
|
4420
|
* array('callback_batch_operation_1', array($arg1)),
|
4421
|
* array('callback_batch_operation_2', array($arg2_1, $arg2_2)),
|
4422
|
* )
|
4423
|
* @endcode
|
4424
|
* - title: A safe, translated string to use as the title for the progress
|
4425
|
* page. Defaults to t('Processing').
|
4426
|
* - init_message: Message displayed while the processing is initialized.
|
4427
|
* Defaults to t('Initializing.').
|
4428
|
* - progress_message: Message displayed while processing the batch. Available
|
4429
|
* placeholders are @current, @remaining, @total, @percentage, @estimate and
|
4430
|
* @elapsed. Defaults to t('Completed @current of @total.').
|
4431
|
* - error_message: Message displayed if an error occurred while processing
|
4432
|
* the batch. Defaults to t('An error has occurred.').
|
4433
|
* - finished: Name of an implementation of callback_batch_finished(). This is
|
4434
|
* executed after the batch has completed. This should be used to perform
|
4435
|
* any result massaging that may be needed, and possibly save data in
|
4436
|
* $_SESSION for display after final page redirection.
|
4437
|
* - file: Path to the file containing the definitions of the 'operations' and
|
4438
|
* 'finished' functions, for instance if they don't reside in the main
|
4439
|
* .module file. The path should be relative to base_path(), and thus should
|
4440
|
* be built using drupal_get_path().
|
4441
|
* - css: Array of paths to CSS files to be used on the progress page.
|
4442
|
* - url_options: options passed to url() when constructing redirect URLs for
|
4443
|
* the batch.
|
4444
|
*/
|
4445
|
function batch_set($batch_definition) {
|
4446
|
if ($batch_definition) {
|
4447
|
$batch =& batch_get();
|
4448
|
|
4449
|
// Initialize the batch if needed.
|
4450
|
if (empty($batch)) {
|
4451
|
$batch = array(
|
4452
|
'sets' => array(),
|
4453
|
'has_form_submits' => FALSE,
|
4454
|
);
|
4455
|
}
|
4456
|
|
4457
|
// Base and default properties for the batch set.
|
4458
|
// Use get_t() to allow batches during installation.
|
4459
|
$t = get_t();
|
4460
|
$init = array(
|
4461
|
'sandbox' => array(),
|
4462
|
'results' => array(),
|
4463
|
'success' => FALSE,
|
4464
|
'start' => 0,
|
4465
|
'elapsed' => 0,
|
4466
|
);
|
4467
|
$defaults = array(
|
4468
|
'title' => $t('Processing'),
|
4469
|
'init_message' => $t('Initializing.'),
|
4470
|
'progress_message' => $t('Completed @current of @total.'),
|
4471
|
'error_message' => $t('An error has occurred.'),
|
4472
|
'css' => array(),
|
4473
|
);
|
4474
|
$batch_set = $init + $batch_definition + $defaults;
|
4475
|
|
4476
|
// Tweak init_message to avoid the bottom of the page flickering down after
|
4477
|
// init phase.
|
4478
|
$batch_set['init_message'] .= '<br/> ';
|
4479
|
|
4480
|
// The non-concurrent workflow of batch execution allows us to save
|
4481
|
// numberOfItems() queries by handling our own counter.
|
4482
|
$batch_set['total'] = count($batch_set['operations']);
|
4483
|
$batch_set['count'] = $batch_set['total'];
|
4484
|
|
4485
|
// Add the set to the batch.
|
4486
|
if (empty($batch['id'])) {
|
4487
|
// The batch is not running yet. Simply add the new set.
|
4488
|
$batch['sets'][] = $batch_set;
|
4489
|
}
|
4490
|
else {
|
4491
|
// The set is being added while the batch is running. Insert the new set
|
4492
|
// right after the current one to ensure execution order, and store its
|
4493
|
// operations in a queue.
|
4494
|
$index = $batch['current_set'] + 1;
|
4495
|
$slice1 = array_slice($batch['sets'], 0, $index);
|
4496
|
$slice2 = array_slice($batch['sets'], $index);
|
4497
|
$batch['sets'] = array_merge($slice1, array($batch_set), $slice2);
|
4498
|
_batch_populate_queue($batch, $index);
|
4499
|
}
|
4500
|
}
|
4501
|
}
|
4502
|
|
4503
|
/**
|
4504
|
* Processes the batch.
|
4505
|
*
|
4506
|
* Unless the batch has been marked with 'progressive' = FALSE, the function
|
4507
|
* issues a drupal_goto and thus ends page execution.
|
4508
|
*
|
4509
|
* This function is generally not needed in form submit handlers;
|
4510
|
* Form API takes care of batches that were set during form submission.
|
4511
|
*
|
4512
|
* @param $redirect
|
4513
|
* (optional) Path to redirect to when the batch has finished processing.
|
4514
|
* @param $url
|
4515
|
* (optional - should only be used for separate scripts like update.php)
|
4516
|
* URL of the batch processing page.
|
4517
|
* @param $redirect_callback
|
4518
|
* (optional) Specify a function to be called to redirect to the progressive
|
4519
|
* processing page. By default drupal_goto() will be used to redirect to a
|
4520
|
* page which will do the progressive page. Specifying another function will
|
4521
|
* allow the progressive processing to be processed differently.
|
4522
|
*/
|
4523
|
function batch_process($redirect = NULL, $url = 'batch', $redirect_callback = 'drupal_goto') {
|
4524
|
$batch =& batch_get();
|
4525
|
|
4526
|
drupal_theme_initialize();
|
4527
|
|
4528
|
if (isset($batch)) {
|
4529
|
// Add process information
|
4530
|
$process_info = array(
|
4531
|
'current_set' => 0,
|
4532
|
'progressive' => TRUE,
|
4533
|
'url' => $url,
|
4534
|
'url_options' => array(),
|
4535
|
'source_url' => $_GET['q'],
|
4536
|
'redirect' => $redirect,
|
4537
|
'theme' => $GLOBALS['theme_key'],
|
4538
|
'redirect_callback' => $redirect_callback,
|
4539
|
);
|
4540
|
$batch += $process_info;
|
4541
|
|
4542
|
// The batch is now completely built. Allow other modules to make changes
|
4543
|
// to the batch so that it is easier to reuse batch processes in other
|
4544
|
// environments.
|
4545
|
drupal_alter('batch', $batch);
|
4546
|
|
4547
|
// Assign an arbitrary id: don't rely on a serial column in the 'batch'
|
4548
|
// table, since non-progressive batches skip database storage completely.
|
4549
|
$batch['id'] = db_next_id();
|
4550
|
|
4551
|
// Move operations to a job queue. Non-progressive batches will use a
|
4552
|
// memory-based queue.
|
4553
|
foreach ($batch['sets'] as $key => $batch_set) {
|
4554
|
_batch_populate_queue($batch, $key);
|
4555
|
}
|
4556
|
|
4557
|
// Initiate processing.
|
4558
|
if ($batch['progressive']) {
|
4559
|
// Now that we have a batch id, we can generate the redirection link in
|
4560
|
// the generic error message.
|
4561
|
$t = get_t();
|
4562
|
$batch['error_message'] = $t('Please continue to <a href="@error_url">the error page</a>', array('@error_url' => url($url, array('query' => array('id' => $batch['id'], 'op' => 'finished')))));
|
4563
|
|
4564
|
// Clear the way for the drupal_goto() redirection to the batch processing
|
4565
|
// page, by saving and unsetting the 'destination', if there is any.
|
4566
|
if (isset($_GET['destination'])) {
|
4567
|
$batch['destination'] = $_GET['destination'];
|
4568
|
unset($_GET['destination']);
|
4569
|
}
|
4570
|
|
4571
|
// Store the batch.
|
4572
|
db_insert('batch')
|
4573
|
->fields(array(
|
4574
|
'bid' => $batch['id'],
|
4575
|
'timestamp' => REQUEST_TIME,
|
4576
|
'token' => drupal_get_token($batch['id']),
|
4577
|
'batch' => serialize($batch),
|
4578
|
))
|
4579
|
->execute();
|
4580
|
|
4581
|
// Set the batch number in the session to guarantee that it will stay alive.
|
4582
|
$_SESSION['batches'][$batch['id']] = TRUE;
|
4583
|
|
4584
|
// Redirect for processing.
|
4585
|
$function = $batch['redirect_callback'];
|
4586
|
if (function_exists($function)) {
|
4587
|
$function($batch['url'], array('query' => array('op' => 'start', 'id' => $batch['id'])));
|
4588
|
}
|
4589
|
}
|
4590
|
else {
|
4591
|
// Non-progressive execution: bypass the whole progressbar workflow
|
4592
|
// and execute the batch in one pass.
|
4593
|
require_once DRUPAL_ROOT . '/includes/batch.inc';
|
4594
|
_batch_process();
|
4595
|
}
|
4596
|
}
|
4597
|
}
|
4598
|
|
4599
|
/**
|
4600
|
* Retrieves the current batch.
|
4601
|
*/
|
4602
|
function &batch_get() {
|
4603
|
// Not drupal_static(), because Batch API operates at a lower level than most
|
4604
|
// use-cases for resetting static variables, and we specifically do not want a
|
4605
|
// global drupal_static_reset() resetting the batch information. Functions
|
4606
|
// that are part of the Batch API and need to reset the batch information may
|
4607
|
// call batch_get() and manipulate the result by reference. Functions that are
|
4608
|
// not part of the Batch API can also do this, but shouldn't.
|
4609
|
static $batch = array();
|
4610
|
return $batch;
|
4611
|
}
|
4612
|
|
4613
|
/**
|
4614
|
* Populates a job queue with the operations of a batch set.
|
4615
|
*
|
4616
|
* Depending on whether the batch is progressive or not, the BatchQueue or
|
4617
|
* BatchMemoryQueue handler classes will be used.
|
4618
|
*
|
4619
|
* @param $batch
|
4620
|
* The batch array.
|
4621
|
* @param $set_id
|
4622
|
* The id of the set to process.
|
4623
|
*
|
4624
|
* @return
|
4625
|
* The name and class of the queue are added by reference to the batch set.
|
4626
|
*/
|
4627
|
function _batch_populate_queue(&$batch, $set_id) {
|
4628
|
$batch_set = &$batch['sets'][$set_id];
|
4629
|
|
4630
|
if (isset($batch_set['operations'])) {
|
4631
|
$batch_set += array(
|
4632
|
'queue' => array(
|
4633
|
'name' => 'drupal_batch:' . $batch['id'] . ':' . $set_id,
|
4634
|
'class' => $batch['progressive'] ? 'BatchQueue' : 'BatchMemoryQueue',
|
4635
|
),
|
4636
|
);
|
4637
|
|
4638
|
$queue = _batch_queue($batch_set);
|
4639
|
$queue->createQueue();
|
4640
|
foreach ($batch_set['operations'] as $operation) {
|
4641
|
$queue->createItem($operation);
|
4642
|
}
|
4643
|
|
4644
|
unset($batch_set['operations']);
|
4645
|
}
|
4646
|
}
|
4647
|
|
4648
|
/**
|
4649
|
* Returns a queue object for a batch set.
|
4650
|
*
|
4651
|
* @param $batch_set
|
4652
|
* The batch set.
|
4653
|
*
|
4654
|
* @return
|
4655
|
* The queue object.
|
4656
|
*/
|
4657
|
function _batch_queue($batch_set) {
|
4658
|
static $queues;
|
4659
|
|
4660
|
// The class autoloader is not available when running update.php, so make
|
4661
|
// sure the files are manually included.
|
4662
|
if (!isset($queues)) {
|
4663
|
$queues = array();
|
4664
|
require_once DRUPAL_ROOT . '/modules/system/system.queue.inc';
|
4665
|
require_once DRUPAL_ROOT . '/includes/batch.queue.inc';
|
4666
|
}
|
4667
|
|
4668
|
if (isset($batch_set['queue'])) {
|
4669
|
$name = $batch_set['queue']['name'];
|
4670
|
$class = $batch_set['queue']['class'];
|
4671
|
|
4672
|
if (!isset($queues[$class][$name])) {
|
4673
|
$queues[$class][$name] = new $class($name);
|
4674
|
}
|
4675
|
return $queues[$class][$name];
|
4676
|
}
|
4677
|
}
|
4678
|
|
4679
|
/**
|
4680
|
* @} End of "defgroup batch".
|
4681
|
*/
|