Projet

Général

Profil

Paste
Télécharger (197 ko) Statistiques
| Branche: | Révision:

root / drupal7 / includes / form.inc @ 01dfd3b5

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(). hook_forms() can also be used to define forms in
109
 *   classes.
110
 * @param ...
111
 *   Any additional arguments are passed on to the functions called by
112
 *   drupal_get_form(), including the unique form constructor function. For
113
 *   example, the node_edit form requires that a node object is passed in here
114
 *   when it is called. These are available to implementations of
115
 *   hook_form_alter() and hook_form_FORM_ID_alter() as the array
116
 *   $form_state['build_info']['args'].
117
 *
118
 * @return
119
 *   The form array.
120
 *
121
 * @see drupal_build_form()
122
 */
123
function drupal_get_form($form_id) {
124
  $form_state = array();
125

    
126
  $args = func_get_args();
127
  // Remove $form_id from the arguments.
128
  array_shift($args);
129
  $form_state['build_info']['args'] = $args;
130

    
131
  return drupal_build_form($form_id, $form_state);
132
}
133

    
134
/**
135
 * Builds and process a form based on a form id.
136
 *
137
 * The form may also be retrieved from the cache if the form was built in a
138
 * previous page-load. The form is then passed on for processing, validation
139
 * and submission if there is proper input.
140
 *
141
 * @param $form_id
142
 *   The unique string identifying the desired form. If a function with that
143
 *   name exists, it is called to build the form array. Modules that need to
144
 *   generate the same form (or very similar forms) using different $form_ids
145
 *   can implement hook_forms(), which maps different $form_id values to the
146
 *   proper form constructor function. Examples may be found in node_forms(),
147
 *   and search_forms().
148
 * @param $form_state
149
 *   An array which stores information about the form. This is passed as a
150
 *   reference so that the caller can use it to examine what in the form changed
151
 *   when the form submission process is complete. Furthermore, it may be used
152
 *   to store information related to the processed data in the form, which will
153
 *   persist across page requests when the 'cache' or 'rebuild' flag is set.
154
 *   The following parameters may be set in $form_state to affect how the form
155
 *   is rendered:
156
 *   - build_info: Internal. An associative array of information stored by Form
157
 *     API that is necessary to build and rebuild the form from cache when the
158
 *     original context may no longer be available:
159
 *     - args: A list of arguments to pass to the form constructor.
160
 *     - files: An optional array defining include files that need to be loaded
161
 *       for building the form. Each array entry may be the path to a file or
162
 *       another array containing values for the parameters 'type', 'module' and
163
 *       'name' as needed by module_load_include(). The files listed here are
164
 *       automatically loaded by form_get_cache(). By default the current menu
165
 *       router item's 'file' definition is added, if any. Use
166
 *       form_load_include() to add include files from a form constructor.
167
 *     - form_id: Identification of the primary form being constructed and
168
 *       processed.
169
 *     - base_form_id: Identification for a base form, as declared in a
170
 *       hook_forms() implementation.
171
 *     - immutable: If this flag is set to TRUE, a new form build id is
172
 *       generated when the form is loaded from the cache. If it is subsequently
173
 *       saved to the cache again, it will have another cache id and therefore
174
 *       the original form and form-state will remain unaltered. This is
175
 *       important when page caching is enabled in order to prevent form state
176
 *       from leaking between anonymous users.
177
 *   - rebuild_info: Internal. Similar to 'build_info', but pertaining to
178
 *     drupal_rebuild_form().
179
 *   - rebuild: Normally, after the entire form processing is completed and
180
 *     submit handlers have run, a form is considered to be done and
181
 *     drupal_redirect_form() will redirect the user to a new page using a GET
182
 *     request (so a browser refresh does not re-submit the form). However, if
183
 *     'rebuild' has been set to TRUE, then a new copy of the form is
184
 *     immediately built and sent to the browser, instead of a redirect. This is
185
 *     used for multi-step forms, such as wizards and confirmation forms.
186
 *     Normally, $form_state['rebuild'] is set by a submit handler, since it is
187
 *     usually logic within a submit handler that determines whether a form is
188
 *     done or requires another step. However, a validation handler may already
189
 *     set $form_state['rebuild'] to cause the form processing to bypass submit
190
 *     handlers and rebuild the form instead, even if there are no validation
191
 *     errors.
192
 *   - redirect: Used to redirect the form on submission. It may either be a
193
 *     string containing the destination URL, or an array of arguments
194
 *     compatible with drupal_goto(). See drupal_redirect_form() for complete
195
 *     information.
196
 *   - no_redirect: If set to TRUE the form will NOT perform a drupal_goto(),
197
 *     even if 'redirect' is set.
198
 *   - method: The HTTP form method to use for finding the input for this form.
199
 *     May be 'post' or 'get'. Defaults to 'post'. Note that 'get' method
200
 *     forms do not use form ids so are always considered to be submitted, which
201
 *     can have unexpected effects. The 'get' method should only be used on
202
 *     forms that do not change data, as that is exclusively the domain of
203
 *     'post.'
204
 *   - cache: If set to TRUE the original, unprocessed form structure will be
205
 *     cached, which allows the entire form to be rebuilt from cache. A typical
206
 *     form workflow involves two page requests; first, a form is built and
207
 *     rendered for the user to fill in. Then, the user fills the form in and
208
 *     submits it, triggering a second page request in which the form must be
209
 *     built and processed. By default, $form and $form_state are built from
210
 *     scratch during each of these page requests. Often, it is necessary or
211
 *     desired to persist the $form and $form_state variables from the initial
212
 *     page request to the one that processes the submission. 'cache' can be set
213
 *     to TRUE to do this. A prominent example is an Ajax-enabled form, in which
214
 *     ajax_process_form() enables form caching for all forms that include an
215
 *     element with the #ajax property. (The Ajax handler has no way to build
216
 *     the form itself, so must rely on the cached version.) Note that the
217
 *     persistence of $form and $form_state happens automatically for
218
 *     (multi-step) forms having the 'rebuild' flag set, regardless of the value
219
 *     for 'cache'.
220
 *   - no_cache: If set to TRUE the form will NOT be cached, even if 'cache' is
221
 *     set.
222
 *   - values: An associative array of values submitted to the form. The
223
 *     validation functions and submit functions use this array for nearly all
224
 *     their decision making. (Note that #tree determines whether the values are
225
 *     a flat array or an array whose structure parallels the $form array. See
226
 *     @link forms_api_reference.html Form API reference @endlink for more
227
 *     information.) These are raw and unvalidated, so should not be used
228
 *     without a thorough understanding of security implications. In almost all
229
 *     cases, code should use the data in the 'values' array exclusively. The
230
 *     most common use of this key is for multi-step forms that need to clear
231
 *     some of the user input when setting 'rebuild'. The values correspond to
232
 *     $_POST or $_GET, depending on the 'method' chosen.
233
 *   - always_process: If TRUE and the method is GET, a form_id is not
234
 *     necessary. This should only be used on RESTful GET forms that do NOT
235
 *     write data, as this could lead to security issues. It is useful so that
236
 *     searches do not need to have a form_id in their query arguments to
237
 *     trigger the search.
238
 *   - must_validate: Ordinarily, a form is only validated once, but there are
239
 *     times when a form is resubmitted internally and should be validated
240
 *     again. Setting this to TRUE will force that to happen. This is most
241
 *     likely to occur during Ajax operations.
242
 *   - programmed: If TRUE, the form was submitted programmatically, usually
243
 *     invoked via drupal_form_submit(). Defaults to FALSE.
244
 *   - programmed_bypass_access_check: If TRUE, programmatic form submissions
245
 *     are processed without taking #access into account. Set this to FALSE
246
 *     when submitting a form programmatically with values that may have been
247
 *     input by the user executing the current request; this will cause #access
248
 *     to be respected as it would on a normal form submission. Defaults to
249
 *     TRUE.
250
 *   - process_input: Boolean flag. TRUE signifies correct form submission.
251
 *     This is always TRUE for programmed forms coming from drupal_form_submit()
252
 *     (see 'programmed' key), or if the form_id coming from the $_POST data is
253
 *     set and matches the current form_id.
254
 *   - submitted: If TRUE, the form has been submitted. Defaults to FALSE.
255
 *   - executed: If TRUE, the form was submitted and has been processed and
256
 *     executed. Defaults to FALSE.
257
 *   - triggering_element: (read-only) The form element that triggered
258
 *     submission. This is the same as the deprecated
259
 *     $form_state['clicked_button']. It is the element that caused submission,
260
 *     which may or may not be a button (in the case of Ajax forms). This key is
261
 *     often used to distinguish between various buttons in a submit handler,
262
 *     and is also used in Ajax handlers.
263
 *   - clicked_button: Deprecated. Use triggering_element instead.
264
 *   - has_file_element: Internal. If TRUE, there is a file element and Form API
265
 *     will set the appropriate 'enctype' HTML attribute on the form.
266
 *   - groups: Internal. An array containing references to fieldsets to render
267
 *     them within vertical tabs.
268
 *   - storage: $form_state['storage'] is not a special key, and no specific
269
 *     support is provided for it in the Form API. By tradition it was
270
 *     the location where application-specific data was stored for communication
271
 *     between the submit, validation, and form builder functions, especially
272
 *     in a multi-step-style form. Form implementations may use any key(s)
273
 *     within $form_state (other than the keys listed here and other reserved
274
 *     ones used by Form API internals) for this kind of storage. The
275
 *     recommended way to ensure that the chosen key doesn't conflict with ones
276
 *     used by the Form API or other modules is to use the module name as the
277
 *     key name or a prefix for the key name. For example, the Node module uses
278
 *     $form_state['node'] in node editing forms to store information about the
279
 *     node being edited, and this information stays available across successive
280
 *     clicks of the "Preview" button as well as when the "Save" button is
281
 *     finally clicked.
282
 *   - buttons: A list containing copies of all submit and button elements in
283
 *     the form.
284
 *   - complete form: A reference to the $form variable containing the complete
285
 *     form structure. #process, #after_build, #element_validate, and other
286
 *     handlers being invoked on a form element may use this reference to access
287
 *     other information in the form the element is contained in.
288
 *   - temporary: An array holding temporary data accessible during the current
289
 *     page request only. All $form_state properties that are not reserved keys
290
 *     (see form_state_keys_no_cache()) persist throughout a multistep form
291
 *     sequence. Form API provides this key for modules to communicate
292
 *     information across form-related functions during a single page request.
293
 *     It may be used to temporarily save data that does not need to or should
294
 *     not be cached during the whole form workflow; e.g., data that needs to be
295
 *     accessed during the current form build process only. There is no use-case
296
 *     for this functionality in Drupal core.
297
 *   - wrapper_callback: Modules that wish to pre-populate certain forms with
298
 *     common elements, such as back/next/save buttons in multi-step form
299
 *     wizards, may define a form builder function name that returns a form
300
 *     structure, which is passed on to the actual form builder function.
301
 *     Such implementations may either define the 'wrapper_callback' via
302
 *     hook_forms() or have to invoke drupal_build_form() (instead of
303
 *     drupal_get_form()) on their own in a custom menu callback to prepare
304
 *     $form_state accordingly.
305
 *   Information on how certain $form_state properties control redirection
306
 *   behavior after form submission may be found in drupal_redirect_form().
307
 *
308
 * @return
309
 *   The rendered form. This function may also perform a redirect and hence may
310
 *   not return at all, depending upon the $form_state flags that were set.
311
 *
312
 * @see drupal_redirect_form()
313
 */
314
function drupal_build_form($form_id, &$form_state) {
315
  // Ensure some defaults; if already set they will not be overridden.
316
  $form_state += form_state_defaults();
317

    
318
  if (!isset($form_state['input'])) {
319
    $form_state['input'] = $form_state['method'] == 'get' ? $_GET : $_POST;
320
  }
321

    
322
  if (isset($_SESSION['batch_form_state'])) {
323
    // We've been redirected here after a batch processing. The form has
324
    // already been processed, but needs to be rebuilt. See _batch_finished().
325
    $form_state = $_SESSION['batch_form_state'];
326
    unset($_SESSION['batch_form_state']);
327
    return drupal_rebuild_form($form_id, $form_state);
328
  }
329

    
330
  // If the incoming input contains a form_build_id, we'll check the cache for a
331
  // copy of the form in question. If it's there, we don't have to rebuild the
332
  // form to proceed. In addition, if there is stored form_state data from a
333
  // previous step, we'll retrieve it so it can be passed on to the form
334
  // processing code.
335
  $check_cache = isset($form_state['input']['form_id']) && $form_state['input']['form_id'] == $form_id && !empty($form_state['input']['form_build_id']);
336
  if ($check_cache) {
337
    $form = form_get_cache($form_state['input']['form_build_id'], $form_state);
338
  }
339

    
340
  // If the previous bit of code didn't result in a populated $form object, we
341
  // are hitting the form for the first time and we need to build it from
342
  // scratch.
343
  if (!isset($form)) {
344
    // If we attempted to serve the form from cache, uncacheable $form_state
345
    // keys need to be removed after retrieving and preparing the form, except
346
    // any that were already set prior to retrieving the form.
347
    if ($check_cache) {
348
      $form_state_before_retrieval = $form_state;
349
    }
350

    
351
    $form = drupal_retrieve_form($form_id, $form_state);
352
    drupal_prepare_form($form_id, $form, $form_state);
353

    
354
    // form_set_cache() removes uncacheable $form_state keys defined in
355
    // form_state_keys_no_cache() in order for multi-step forms to work
356
    // properly. This means that form processing logic for single-step forms
357
    // using $form_state['cache'] may depend on data stored in those keys
358
    // during drupal_retrieve_form()/drupal_prepare_form(), but form
359
    // processing should not depend on whether the form is cached or not, so
360
    // $form_state is adjusted to match what it would be after a
361
    // form_set_cache()/form_get_cache() sequence. These exceptions are
362
    // allowed to survive here:
363
    // - always_process: Does not make sense in conjunction with form caching
364
    //   in the first place, since passing form_build_id as a GET parameter is
365
    //   not desired.
366
    // - temporary: Any assigned data is expected to survives within the same
367
    //   page request.
368
    if ($check_cache) {
369
      $uncacheable_keys = array_flip(array_diff(form_state_keys_no_cache(), array('always_process', 'temporary')));
370
      $form_state = array_diff_key($form_state, $uncacheable_keys);
371
      $form_state += $form_state_before_retrieval;
372
    }
373
  }
374

    
375
  // Now that we have a constructed form, process it. This is where:
376
  // - Element #process functions get called to further refine $form.
377
  // - User input, if any, gets incorporated in the #value property of the
378
  //   corresponding elements and into $form_state['values'].
379
  // - Validation and submission handlers are called.
380
  // - If this submission is part of a multistep workflow, the form is rebuilt
381
  //   to contain the information of the next step.
382
  // - If necessary, the form and form state are cached or re-cached, so that
383
  //   appropriate information persists to the next page request.
384
  // All of the handlers in the pipeline receive $form_state by reference and
385
  // can use it to know or update information about the state of the form.
386
  drupal_process_form($form_id, $form, $form_state);
387

    
388
  // If this was a successful submission of a single-step form or the last step
389
  // of a multi-step form, then drupal_process_form() issued a redirect to
390
  // another page, or back to this page, but as a new request. Therefore, if
391
  // we're here, it means that this is either a form being viewed initially
392
  // before any user input, or there was a validation error requiring the form
393
  // to be re-displayed, or we're in a multi-step workflow and need to display
394
  // the form's next step. In any case, we have what we need in $form, and can
395
  // return it for rendering.
396
  return $form;
397
}
398

    
399
/**
400
 * Retrieves default values for the $form_state array.
401
 */
402
function form_state_defaults() {
403
  return array(
404
    'rebuild' => FALSE,
405
    'rebuild_info' => array(),
406
    'redirect' => NULL,
407
    // @todo 'args' is usually set, so no other default 'build_info' keys are
408
    //   appended via += form_state_defaults().
409
    'build_info' => array(
410
      'args' => array(),
411
      'files' => array(),
412
    ),
413
    'temporary' => array(),
414
    'submitted' => FALSE,
415
    'executed' => FALSE,
416
    'programmed' => FALSE,
417
    'programmed_bypass_access_check' => TRUE,
418
    'cache'=> FALSE,
419
    'method' => 'post',
420
    'groups' => array(),
421
    'buttons' => array(),
422
  );
423
}
424

    
425
/**
426
 * Constructs a new $form from the information in $form_state.
427
 *
428
 * This is the key function for making multi-step forms advance from step to
429
 * step. It is called by drupal_process_form() when all user input processing,
430
 * including calling validation and submission handlers, for the request is
431
 * finished. If a validate or submit handler set $form_state['rebuild'] to TRUE,
432
 * and if other conditions don't preempt a rebuild from happening, then this
433
 * function is called to generate a new $form, the next step in the form
434
 * workflow, to be returned for rendering.
435
 *
436
 * Ajax form submissions are almost always multi-step workflows, so that is one
437
 * common use-case during which form rebuilding occurs. See ajax_form_callback()
438
 * for more information about creating Ajax-enabled forms.
439
 *
440
 * @param $form_id
441
 *   The unique string identifying the desired form. If a function
442
 *   with that name exists, it is called to build the form array.
443
 *   Modules that need to generate the same form (or very similar forms)
444
 *   using different $form_ids can implement hook_forms(), which maps
445
 *   different $form_id values to the proper form constructor function. Examples
446
 *   may be found in node_forms() and search_forms().
447
 * @param $form_state
448
 *   A keyed array containing the current state of the form.
449
 * @param $old_form
450
 *   (optional) A previously built $form. Used to retain the #build_id and
451
 *   #action properties in Ajax callbacks and similar partial form rebuilds. The
452
 *   only properties copied from $old_form are the ones which both exist in
453
 *   $old_form and for which $form_state['rebuild_info']['copy'][PROPERTY] is
454
 *   TRUE. If $old_form is not passed, the entire $form is rebuilt freshly.
455
 *   'rebuild_info' needs to be a separate top-level property next to
456
 *   'build_info', since the contained data must not be cached.
457
 *
458
 * @return
459
 *   The newly built form.
460
 *
461
 * @see drupal_process_form()
462
 * @see ajax_form_callback()
463
 */
464
function drupal_rebuild_form($form_id, &$form_state, $old_form = NULL) {
465
  $form = drupal_retrieve_form($form_id, $form_state);
466

    
467
  // If only parts of the form will be returned to the browser (e.g., Ajax or
468
  // RIA clients), or if the form already had a new build ID regenerated when it
469
  // was retrieved from the form cache, reuse the existing #build_id.
470
  // Otherwise, a new #build_id is generated, to not clobber the previous
471
  // build's data in the form cache; also allowing the user to go back to an
472
  // earlier build, make changes, and re-submit.
473
  // @see drupal_prepare_form()
474
  $enforce_old_build_id = isset($old_form['#build_id']) && !empty($form_state['rebuild_info']['copy']['#build_id']);
475
  $old_form_is_mutable_copy = isset($old_form['#build_id_old']);
476
  if ($enforce_old_build_id || $old_form_is_mutable_copy) {
477
    $form['#build_id'] = $old_form['#build_id'];
478
    if ($old_form_is_mutable_copy) {
479
      $form['#build_id_old'] = $old_form['#build_id_old'];
480
    }
481
  }
482
  else {
483
    if (isset($old_form['#build_id'])) {
484
      $form['#build_id_old'] = $old_form['#build_id'];
485
    }
486
    $form['#build_id'] = 'form-' . drupal_random_key();
487
  }
488

    
489
  // #action defaults to request_uri(), but in case of Ajax and other partial
490
  // rebuilds, the form is submitted to an alternate URL, and the original
491
  // #action needs to be retained.
492
  if (isset($old_form['#action']) && !empty($form_state['rebuild_info']['copy']['#action'])) {
493
    $form['#action'] = $old_form['#action'];
494
  }
495

    
496
  drupal_prepare_form($form_id, $form, $form_state);
497

    
498
  // Caching is normally done in drupal_process_form(), but what needs to be
499
  // cached is the $form structure before it passes through form_builder(),
500
  // so we need to do it here.
501
  // @todo For Drupal 8, find a way to avoid this code duplication.
502
  if (empty($form_state['no_cache'])) {
503
    form_set_cache($form['#build_id'], $form, $form_state);
504
  }
505

    
506
  // Clear out all group associations as these might be different when
507
  // re-rendering the form.
508
  $form_state['groups'] = array();
509

    
510
  // Return a fully built form that is ready for rendering.
511
  return form_builder($form_id, $form, $form_state);
512
}
513

    
514
/**
515
 * Fetches a form from cache.
516
 */
517
function form_get_cache($form_build_id, &$form_state) {
518
  if ($cached = cache_get('form_' . $form_build_id, 'cache_form')) {
519
    $form = $cached->data;
520

    
521
    global $user;
522
    if ((isset($form['#cache_token']) && drupal_valid_token($form['#cache_token'])) || (!isset($form['#cache_token']) && !$user->uid)) {
523
      if ($cached = cache_get('form_state_' . $form_build_id, 'cache_form')) {
524
        // Re-populate $form_state for subsequent rebuilds.
525
        $form_state = $cached->data + $form_state;
526

    
527
        // If the original form is contained in include files, load the files.
528
        // @see form_load_include()
529
        $form_state['build_info'] += array('files' => array());
530
        foreach ($form_state['build_info']['files'] as $file) {
531
          if (is_array($file)) {
532
            $file += array('type' => 'inc', 'name' => $file['module']);
533
            module_load_include($file['type'], $file['module'], $file['name']);
534
          }
535
          elseif (file_exists($file)) {
536
            require_once DRUPAL_ROOT . '/' . $file;
537
          }
538
        }
539
      }
540
      // Generate a new #build_id if the cached form was rendered on a cacheable
541
      // page.
542
      if (!empty($form_state['build_info']['immutable'])) {
543
        $form['#build_id_old'] = $form['#build_id'];
544
        $form['#build_id'] = 'form-' . drupal_random_key();
545
        $form['form_build_id']['#value'] = $form['#build_id'];
546
        $form['form_build_id']['#id'] = $form['#build_id'];
547
        unset($form_state['build_info']['immutable']);
548
      }
549
      return $form;
550
    }
551
  }
552
}
553

    
554
/**
555
 * Stores a form in the cache.
556
 */
557
function form_set_cache($form_build_id, $form, $form_state) {
558
  // The default cache_form expiration is 6 hours. On busy sites, the cache_form
559
  // table can become very large. A shorter cache lifetime can help to keep the
560
  // table's size under control.
561
  $expire = variable_get('form_cache_expiration', 21600);
562

    
563
  // Ensure that the form build_id embedded in the form structure is the same as
564
  // the one passed in as a parameter. This is an additional safety measure to
565
  // prevent legacy code operating directly with form_get_cache and
566
  // form_set_cache from accidentally overwriting immutable form state.
567
  if ($form['#build_id'] != $form_build_id) {
568
    watchdog('form', 'Form build-id mismatch detected while attempting to store a form in the cache.', array(), WATCHDOG_ERROR);
569
    return;
570
  }
571

    
572
  // Cache form structure.
573
  if (isset($form)) {
574
    if ($GLOBALS['user']->uid) {
575
      $form['#cache_token'] = drupal_get_token();
576
    }
577
    unset($form['#build_id_old']);
578
    cache_set('form_' . $form_build_id, $form, 'cache_form', REQUEST_TIME + $expire);
579
  }
580

    
581
  // Cache form state.
582
  if (variable_get('cache', 0) && drupal_page_is_cacheable()) {
583
    $form_state['build_info']['immutable'] = TRUE;
584
  }
585
  if ($data = array_diff_key($form_state, array_flip(form_state_keys_no_cache()))) {
586
    cache_set('form_state_' . $form_build_id, $data, 'cache_form', REQUEST_TIME + $expire);
587
  }
588
}
589

    
590
/**
591
 * Returns an array of $form_state keys that shouldn't be cached.
592
 */
593
function form_state_keys_no_cache() {
594
  return array(
595
    // Public properties defined by form constructors and form handlers.
596
    'always_process',
597
    'must_validate',
598
    'rebuild',
599
    'rebuild_info',
600
    'redirect',
601
    'no_redirect',
602
    'temporary',
603
    // Internal properties defined by form processing.
604
    'buttons',
605
    'triggering_element',
606
    'clicked_button',
607
    'complete form',
608
    'groups',
609
    'input',
610
    'method',
611
    'submit_handlers',
612
    'submitted',
613
    'executed',
614
    'validate_handlers',
615
    'values',
616
  );
617
}
618

    
619
/**
620
 * Ensures an include file is loaded whenever the form is processed.
621
 *
622
 * Example:
623
 * @code
624
 *   // Load node.admin.inc from Node module.
625
 *   form_load_include($form_state, 'inc', 'node', 'node.admin');
626
 * @endcode
627
 *
628
 * Use this function instead of module_load_include() from inside a form
629
 * constructor or any form processing logic as it ensures that the include file
630
 * is loaded whenever the form is processed. In contrast to using
631
 * module_load_include() directly, form_load_include() makes sure the include
632
 * file is correctly loaded also if the form is cached.
633
 *
634
 * @param $form_state
635
 *   The current state of the form.
636
 * @param $type
637
 *   The include file's type (file extension).
638
 * @param $module
639
 *   The module to which the include file belongs.
640
 * @param $name
641
 *   (optional) The base file name (without the $type extension). If omitted,
642
 *   $module is used; i.e., resulting in "$module.$type" by default.
643
 *
644
 * @return
645
 *   The filepath of the loaded include file, or FALSE if the include file was
646
 *   not found or has been loaded already.
647
 *
648
 * @see module_load_include()
649
 */
650
function form_load_include(&$form_state, $type, $module, $name = NULL) {
651
  if (!isset($name)) {
652
    $name = $module;
653
  }
654
  if (!isset($form_state['build_info']['files']["$module:$name.$type"])) {
655
    // Only add successfully included files to the form state.
656
    if ($result = module_load_include($type, $module, $name)) {
657
      $form_state['build_info']['files']["$module:$name.$type"] = array(
658
        'type' => $type,
659
        'module' => $module,
660
        'name' => $name,
661
      );
662
      return $result;
663
    }
664
  }
665
  return FALSE;
666
}
667

    
668
/**
669
 * Retrieves, populates, and processes a form.
670
 *
671
 * This function allows you to supply values for form elements and submit a
672
 * form for processing. Compare to drupal_get_form(), which also builds and
673
 * processes a form, but does not allow you to supply values.
674
 *
675
 * There is no return value, but you can check to see if there are errors
676
 * by calling form_get_errors().
677
 *
678
 * @param $form_id
679
 *   The unique string identifying the desired form. If a function
680
 *   with that name exists, it is called to build the form array.
681
 *   Modules that need to generate the same form (or very similar forms)
682
 *   using different $form_ids can implement hook_forms(), which maps
683
 *   different $form_id values to the proper form constructor function. Examples
684
 *   may be found in node_forms() and search_forms().
685
 * @param $form_state
686
 *   A keyed array containing the current state of the form. Most important is
687
 *   the $form_state['values'] collection, a tree of data used to simulate the
688
 *   incoming $_POST information from a user's form submission. If a key is not
689
 *   filled in $form_state['values'], then the default value of the respective
690
 *   element is used. To submit an unchecked checkbox or other control that
691
 *   browsers submit by not having a $_POST entry, include the key, but set the
692
 *   value to NULL.
693
 * @param ...
694
 *   Any additional arguments are passed on to the functions called by
695
 *   drupal_form_submit(), including the unique form constructor function.
696
 *   For example, the node_edit form requires that a node object be passed
697
 *   in here when it is called. Arguments that need to be passed by reference
698
 *   should not be included here, but rather placed directly in the $form_state
699
 *   build info array so that the reference can be preserved. For example, a
700
 *   form builder function with the following signature:
701
 *   @code
702
 *   function mymodule_form($form, &$form_state, &$object) {
703
 *   }
704
 *   @endcode
705
 *   would be called via drupal_form_submit() as follows:
706
 *   @code
707
 *   $form_state['values'] = $my_form_values;
708
 *   $form_state['build_info']['args'] = array(&$object);
709
 *   drupal_form_submit('mymodule_form', $form_state);
710
 *   @endcode
711
 * For example:
712
 * @code
713
 * // register a new user
714
 * $form_state = array();
715
 * $form_state['values']['name'] = 'robo-user';
716
 * $form_state['values']['mail'] = 'robouser@example.com';
717
 * $form_state['values']['pass']['pass1'] = 'password';
718
 * $form_state['values']['pass']['pass2'] = 'password';
719
 * $form_state['values']['op'] = t('Create new account');
720
 * drupal_form_submit('user_register_form', $form_state);
721
 * @endcode
722
 */
723
function drupal_form_submit($form_id, &$form_state) {
724
  if (!isset($form_state['build_info']['args'])) {
725
    $args = func_get_args();
726
    array_shift($args);
727
    array_shift($args);
728
    $form_state['build_info']['args'] = $args;
729
  }
730
  // Merge in default values.
731
  $form_state += form_state_defaults();
732

    
733
  // Populate $form_state['input'] with the submitted values before retrieving
734
  // the form, to be consistent with what drupal_build_form() does for
735
  // non-programmatic submissions (form builder functions may expect it to be
736
  // there).
737
  $form_state['input'] = $form_state['values'];
738

    
739
  $form_state['programmed'] = TRUE;
740
  $form = drupal_retrieve_form($form_id, $form_state);
741
  // Programmed forms are always submitted.
742
  $form_state['submitted'] = TRUE;
743

    
744
  // Reset form validation.
745
  $form_state['must_validate'] = TRUE;
746
  form_clear_error();
747

    
748
  drupal_prepare_form($form_id, $form, $form_state);
749
  drupal_process_form($form_id, $form, $form_state);
750
}
751

    
752
/**
753
 * Retrieves the structured array that defines a given form.
754
 *
755
 * @param $form_id
756
 *   The unique string identifying the desired form. If a function
757
 *   with that name exists, it is called to build the form array.
758
 *   Modules that need to generate the same form (or very similar forms)
759
 *   using different $form_ids can implement hook_forms(), which maps
760
 *   different $form_id values to the proper form constructor function.
761
 * @param $form_state
762
 *   A keyed array containing the current state of the form, including the
763
 *   additional arguments to drupal_get_form() or drupal_form_submit() in the
764
 *   'args' component of the array.
765
 */
766
function drupal_retrieve_form($form_id, &$form_state) {
767
  $forms = &drupal_static(__FUNCTION__);
768

    
769
  // Record the $form_id.
770
  $form_state['build_info']['form_id'] = $form_id;
771

    
772
  // Record the filepath of the include file containing the original form, so
773
  // the form builder callbacks can be loaded when the form is being rebuilt
774
  // from cache on a different path (such as 'system/ajax'). See
775
  // form_get_cache(). Don't do this in maintenance mode as Drupal may not be
776
  // fully bootstrapped (i.e. during installation) in which case
777
  // menu_get_item() is not available.
778
  if (!isset($form_state['build_info']['files']['menu']) && !defined('MAINTENANCE_MODE')) {
779
    $item = menu_get_item();
780
    if (!empty($item['include_file'])) {
781
      // Do not use form_load_include() here, as the file is already loaded.
782
      // Anyway, form_get_cache() is able to handle filepaths too.
783
      $form_state['build_info']['files']['menu'] = $item['include_file'];
784
    }
785
  }
786

    
787
  // We save two copies of the incoming arguments: one for modules to use
788
  // when mapping form ids to constructor functions, and another to pass to
789
  // the constructor function itself.
790
  $args = $form_state['build_info']['args'];
791

    
792
  // We first check to see if there's a function named after the $form_id.
793
  // If there is, we simply pass the arguments on to it to get the form.
794
  if (!function_exists($form_id)) {
795
    // In cases where many form_ids need to share a central constructor function,
796
    // such as the node editing form, modules can implement hook_forms(). It
797
    // maps one or more form_ids to the correct constructor functions.
798
    //
799
    // We cache the results of that hook to save time, but that only works
800
    // for modules that know all their form_ids in advance. (A module that
801
    // adds a small 'rate this comment' form to each comment in a list
802
    // would need a unique form_id for each one, for example.)
803
    //
804
    // So, we call the hook if $forms isn't yet populated, OR if it doesn't
805
    // yet have an entry for the requested form_id.
806
    if (!isset($forms) || !isset($forms[$form_id])) {
807
      $forms = module_invoke_all('forms', $form_id, $args);
808
    }
809
    $form_definition = $forms[$form_id];
810
    if (isset($form_definition['callback arguments'])) {
811
      $args = array_merge($form_definition['callback arguments'], $args);
812
    }
813
    if (isset($form_definition['callback'])) {
814
      $callback = $form_definition['callback'];
815
      $form_state['build_info']['base_form_id'] = isset($form_definition['base_form_id']) ? $form_definition['base_form_id'] : $callback;
816
    }
817
    // In case $form_state['wrapper_callback'] is not defined already, we also
818
    // allow hook_forms() to define one.
819
    if (!isset($form_state['wrapper_callback']) && isset($form_definition['wrapper_callback'])) {
820
      $form_state['wrapper_callback'] = $form_definition['wrapper_callback'];
821
    }
822
  }
823

    
824
  $form = array();
825
  // We need to pass $form_state by reference in order for forms to modify it,
826
  // since call_user_func_array() requires that referenced variables are passed
827
  // explicitly.
828
  $args = array_merge(array($form, &$form_state), $args);
829

    
830
  // When the passed $form_state (not using drupal_get_form()) defines a
831
  // 'wrapper_callback', then it requests to invoke a separate (wrapping) form
832
  // builder function to pre-populate the $form array with form elements, which
833
  // the actual form builder function ($callback) expects. This allows for
834
  // pre-populating a form with common elements for certain forms, such as
835
  // back/next/save buttons in multi-step form wizards. See drupal_build_form().
836
  if (isset($form_state['wrapper_callback']) && is_callable($form_state['wrapper_callback'])) {
837
    $form = call_user_func_array($form_state['wrapper_callback'], $args);
838
    // Put the prepopulated $form into $args.
839
    $args[0] = $form;
840
  }
841

    
842
  // If $callback was returned by a hook_forms() implementation, call it.
843
  // Otherwise, call the function named after the form id.
844
  $form = call_user_func_array(isset($callback) ? $callback : $form_id, $args);
845
  $form['#form_id'] = $form_id;
846

    
847
  return $form;
848
}
849

    
850
/**
851
 * Processes a form submission.
852
 *
853
 * This function is the heart of form API. The form gets built, validated and in
854
 * appropriate cases, submitted and rebuilt.
855
 *
856
 * @param $form_id
857
 *   The unique string identifying the current form.
858
 * @param $form
859
 *   An associative array containing the structure of the form.
860
 * @param $form_state
861
 *   A keyed array containing the current state of the form. This
862
 *   includes the current persistent storage data for the form, and
863
 *   any data passed along by earlier steps when displaying a
864
 *   multi-step form. Additional information, like the sanitized $_POST
865
 *   data, is also accumulated here.
866
 */
867
function drupal_process_form($form_id, &$form, &$form_state) {
868
  $form_state['values'] = array();
869

    
870
  // With $_GET, these forms are always submitted if requested.
871
  if ($form_state['method'] == 'get' && !empty($form_state['always_process'])) {
872
    if (!isset($form_state['input']['form_build_id'])) {
873
      $form_state['input']['form_build_id'] = $form['#build_id'];
874
    }
875
    if (!isset($form_state['input']['form_id'])) {
876
      $form_state['input']['form_id'] = $form_id;
877
    }
878
    if (!isset($form_state['input']['form_token']) && isset($form['#token'])) {
879
      $form_state['input']['form_token'] = drupal_get_token($form['#token']);
880
    }
881
  }
882

    
883
  // form_builder() finishes building the form by calling element #process
884
  // functions and mapping user input, if any, to #value properties, and also
885
  // storing the values in $form_state['values']. We need to retain the
886
  // unprocessed $form in case it needs to be cached.
887
  $unprocessed_form = $form;
888
  $form = form_builder($form_id, $form, $form_state);
889

    
890
  // Only process the input if we have a correct form submission.
891
  if ($form_state['process_input']) {
892
    drupal_validate_form($form_id, $form, $form_state);
893

    
894
    // drupal_html_id() maintains a cache of element IDs it has seen,
895
    // so it can prevent duplicates. We want to be sure we reset that
896
    // cache when a form is processed, so scenarios that result in
897
    // the form being built behind the scenes and again for the
898
    // browser don't increment all the element IDs needlessly.
899
    if (!form_get_errors()) {
900
      // In case of errors, do not break HTML IDs of other forms.
901
      drupal_static_reset('drupal_html_id');
902
    }
903

    
904
    if ($form_state['submitted'] && !form_get_errors() && !$form_state['rebuild']) {
905
      // Execute form submit handlers.
906
      form_execute_handlers('submit', $form, $form_state);
907

    
908
      // We'll clear out the cached copies of the form and its stored data
909
      // here, as we've finished with them. The in-memory copies are still
910
      // here, though.
911
      if (!variable_get('cache', 0) && !empty($form_state['values']['form_build_id'])) {
912
        cache_clear_all('form_' . $form_state['values']['form_build_id'], 'cache_form');
913
        cache_clear_all('form_state_' . $form_state['values']['form_build_id'], 'cache_form');
914
      }
915

    
916
      // If batches were set in the submit handlers, we process them now,
917
      // possibly ending execution. We make sure we do not react to the batch
918
      // that is already being processed (if a batch operation performs a
919
      // drupal_form_submit).
920
      if ($batch =& batch_get() && !isset($batch['current_set'])) {
921
        // Store $form_state information in the batch definition.
922
        // We need the full $form_state when either:
923
        // - Some submit handlers were saved to be called during batch
924
        //   processing. See form_execute_handlers().
925
        // - The form is multistep.
926
        // In other cases, we only need the information expected by
927
        // drupal_redirect_form().
928
        if ($batch['has_form_submits'] || !empty($form_state['rebuild'])) {
929
          $batch['form_state'] = $form_state;
930
        }
931
        else {
932
          $batch['form_state'] = array_intersect_key($form_state, array_flip(array('programmed', 'rebuild', 'storage', 'no_redirect', 'redirect')));
933
        }
934

    
935
        $batch['progressive'] = !$form_state['programmed'];
936
        batch_process();
937

    
938
        // Execution continues only for programmatic forms.
939
        // For 'regular' forms, we get redirected to the batch processing
940
        // page. Form redirection will be handled in _batch_finished(),
941
        // after the batch is processed.
942
      }
943

    
944
      // Set a flag to indicate that the form has been processed and executed.
945
      $form_state['executed'] = TRUE;
946

    
947
      // Redirect the form based on values in $form_state.
948
      drupal_redirect_form($form_state);
949
    }
950

    
951
    // Don't rebuild or cache form submissions invoked via drupal_form_submit().
952
    if (!empty($form_state['programmed'])) {
953
      return;
954
    }
955

    
956
    // If $form_state['rebuild'] has been set and input has been processed
957
    // without validation errors, we are in a multi-step workflow that is not
958
    // yet complete. A new $form needs to be constructed based on the changes
959
    // made to $form_state during this request. Normally, a submit handler sets
960
    // $form_state['rebuild'] if a fully executed form requires another step.
961
    // However, for forms that have not been fully executed (e.g., Ajax
962
    // submissions triggered by non-buttons), there is no submit handler to set
963
    // $form_state['rebuild']. It would not make sense to redisplay the
964
    // identical form without an error for the user to correct, so we also
965
    // rebuild error-free non-executed forms, regardless of
966
    // $form_state['rebuild'].
967
    // @todo D8: Simplify this logic; considering Ajax and non-HTML front-ends,
968
    //   along with element-level #submit properties, it makes no sense to have
969
    //   divergent form execution based on whether the triggering element has
970
    //   #executes_submit_callback set to TRUE.
971
    if (($form_state['rebuild'] || !$form_state['executed']) && !form_get_errors()) {
972
      // Form building functions (e.g., _form_builder_handle_input_element())
973
      // may use $form_state['rebuild'] to determine if they are running in the
974
      // context of a rebuild, so ensure it is set.
975
      $form_state['rebuild'] = TRUE;
976
      $form = drupal_rebuild_form($form_id, $form_state, $form);
977
    }
978
  }
979

    
980
  // After processing the form, the form builder or a #process callback may
981
  // have set $form_state['cache'] to indicate that the form and form state
982
  // shall be cached. But the form may only be cached if the 'no_cache' property
983
  // is not set to TRUE. Only cache $form as it was prior to form_builder(),
984
  // because form_builder() must run for each request to accommodate new user
985
  // input. Rebuilt forms are not cached here, because drupal_rebuild_form()
986
  // already takes care of that.
987
  if (!$form_state['rebuild'] && $form_state['cache'] && empty($form_state['no_cache'])) {
988
    form_set_cache($form['#build_id'], $unprocessed_form, $form_state);
989
  }
990
}
991

    
992
/**
993
 * Prepares a structured form array.
994
 *
995
 * Adds required elements, executes any hook_form_alter functions, and
996
 * optionally inserts a validation token to prevent tampering.
997
 *
998
 * @param $form_id
999
 *   A unique string identifying the form for validation, submission,
1000
 *   theming, and hook_form_alter functions.
1001
 * @param $form
1002
 *   An associative array containing the structure of the form.
1003
 * @param $form_state
1004
 *   A keyed array containing the current state of the form. Passed
1005
 *   in here so that hook_form_alter() calls can use it, as well.
1006
 */
1007
function drupal_prepare_form($form_id, &$form, &$form_state) {
1008
  global $user;
1009

    
1010
  $form['#type'] = 'form';
1011
  $form_state['programmed'] = isset($form_state['programmed']) ? $form_state['programmed'] : FALSE;
1012

    
1013
  // Fix the form method, if it is 'get' in $form_state, but not in $form.
1014
  if ($form_state['method'] == 'get' && !isset($form['#method'])) {
1015
    $form['#method'] = 'get';
1016
  }
1017

    
1018
  // Generate a new #build_id for this form, if none has been set already. The
1019
  // form_build_id is used as key to cache a particular build of the form. For
1020
  // multi-step forms, this allows the user to go back to an earlier build, make
1021
  // changes, and re-submit.
1022
  // @see drupal_build_form()
1023
  // @see drupal_rebuild_form()
1024
  if (!isset($form['#build_id'])) {
1025
    $form['#build_id'] = 'form-' . drupal_random_key();
1026
  }
1027
  $form['form_build_id'] = array(
1028
    '#type' => 'hidden',
1029
    '#value' => $form['#build_id'],
1030
    '#id' => $form['#build_id'],
1031
    '#name' => 'form_build_id',
1032
    // Form processing and validation requires this value, so ensure the
1033
    // submitted form value appears literally, regardless of custom #tree
1034
    // and #parents being set elsewhere.
1035
    '#parents' => array('form_build_id'),
1036
  );
1037

    
1038
  // Add a token, based on either #token or form_id, to any form displayed to
1039
  // authenticated users. This ensures that any submitted form was actually
1040
  // requested previously by the user and protects against cross site request
1041
  // forgeries.
1042
  // This does not apply to programmatically submitted forms. Furthermore, since
1043
  // tokens are session-bound and forms displayed to anonymous users are very
1044
  // likely cached, we cannot assign a token for them.
1045
  // During installation, there is no $user yet.
1046
  if (!empty($user->uid) && !$form_state['programmed']) {
1047
    // Form constructors may explicitly set #token to FALSE when cross site
1048
    // request forgery is irrelevant to the form, such as search forms.
1049
    if (isset($form['#token']) && $form['#token'] === FALSE) {
1050
      unset($form['#token']);
1051
    }
1052
    // Otherwise, generate a public token based on the form id.
1053
    else {
1054
      $form['#token'] = $form_id;
1055
      $form['form_token'] = array(
1056
        '#id' => drupal_html_id('edit-' . $form_id . '-form-token'),
1057
        '#type' => 'token',
1058
        '#default_value' => drupal_get_token($form['#token']),
1059
        // Form processing and validation requires this value, so ensure the
1060
        // submitted form value appears literally, regardless of custom #tree
1061
        // and #parents being set elsewhere.
1062
        '#parents' => array('form_token'),
1063
      );
1064
    }
1065
  }
1066

    
1067
  if (isset($form_id)) {
1068
    $form['form_id'] = array(
1069
      '#type' => 'hidden',
1070
      '#value' => $form_id,
1071
      '#id' => drupal_html_id("edit-$form_id"),
1072
      // Form processing and validation requires this value, so ensure the
1073
      // submitted form value appears literally, regardless of custom #tree
1074
      // and #parents being set elsewhere.
1075
      '#parents' => array('form_id'),
1076
    );
1077
  }
1078
  if (!isset($form['#id'])) {
1079
    $form['#id'] = drupal_html_id($form_id);
1080
  }
1081

    
1082
  $form += element_info('form');
1083
  $form += array('#tree' => FALSE, '#parents' => array());
1084

    
1085
  if (!isset($form['#validate'])) {
1086
    // Ensure that modules can rely on #validate being set.
1087
    $form['#validate'] = array();
1088
    // Check for a handler specific to $form_id.
1089
    if (function_exists($form_id . '_validate')) {
1090
      $form['#validate'][] = $form_id . '_validate';
1091
    }
1092
    // Otherwise check whether this is a shared form and whether there is a
1093
    // handler for the shared $form_id.
1094
    elseif (isset($form_state['build_info']['base_form_id']) && function_exists($form_state['build_info']['base_form_id'] . '_validate')) {
1095
      $form['#validate'][] = $form_state['build_info']['base_form_id'] . '_validate';
1096
    }
1097
  }
1098

    
1099
  if (!isset($form['#submit'])) {
1100
    // Ensure that modules can rely on #submit being set.
1101
    $form['#submit'] = array();
1102
    // Check for a handler specific to $form_id.
1103
    if (function_exists($form_id . '_submit')) {
1104
      $form['#submit'][] = $form_id . '_submit';
1105
    }
1106
    // Otherwise check whether this is a shared form and whether there is a
1107
    // handler for the shared $form_id.
1108
    elseif (isset($form_state['build_info']['base_form_id']) && function_exists($form_state['build_info']['base_form_id'] . '_submit')) {
1109
      $form['#submit'][] = $form_state['build_info']['base_form_id'] . '_submit';
1110
    }
1111
  }
1112

    
1113
  // If no #theme has been set, automatically apply theme suggestions.
1114
  // theme_form() itself is in #theme_wrappers and not #theme. Therefore, the
1115
  // #theme function only has to care for rendering the inner form elements,
1116
  // not the form itself.
1117
  if (!isset($form['#theme'])) {
1118
    $form['#theme'] = array($form_id);
1119
    if (isset($form_state['build_info']['base_form_id'])) {
1120
      $form['#theme'][] = $form_state['build_info']['base_form_id'];
1121
    }
1122
  }
1123

    
1124
  // Invoke hook_form_alter(), hook_form_BASE_FORM_ID_alter(), and
1125
  // hook_form_FORM_ID_alter() implementations.
1126
  $hooks = array('form');
1127
  if (isset($form_state['build_info']['base_form_id'])) {
1128
    $hooks[] = 'form_' . $form_state['build_info']['base_form_id'];
1129
  }
1130
  $hooks[] = 'form_' . $form_id;
1131
  drupal_alter($hooks, $form, $form_state, $form_id);
1132
}
1133

    
1134
/**
1135
 * Helper function to call form_set_error() if there is a token error.
1136
 */
1137
function _drupal_invalid_token_set_form_error() {
1138
  // Setting this error will cause the form to fail validation.
1139
  form_set_error('form_token', t('The form has become outdated. Press the back button, copy any unsaved work in the form, and then reload the page.'));
1140
}
1141

    
1142
/**
1143
 * Validates user-submitted form data in the $form_state array.
1144
 *
1145
 * @param $form_id
1146
 *   A unique string identifying the form for validation, submission,
1147
 *   theming, and hook_form_alter functions.
1148
 * @param $form
1149
 *   An associative array containing the structure of the form, which is passed
1150
 *   by reference. Form validation handlers are able to alter the form structure
1151
 *   (like #process and #after_build callbacks during form building) in case of
1152
 *   a validation error. If a validation handler alters the form structure, it
1153
 *   is responsible for validating the values of changed form elements in
1154
 *   $form_state['values'] to prevent form submit handlers from receiving
1155
 *   unvalidated values.
1156
 * @param $form_state
1157
 *   A keyed array containing the current state of the form. The current
1158
 *   user-submitted data is stored in $form_state['values'], though
1159
 *   form validation functions are passed an explicit copy of the
1160
 *   values for the sake of simplicity. Validation handlers can also use
1161
 *   $form_state to pass information on to submit handlers. For example:
1162
 *     $form_state['data_for_submission'] = $data;
1163
 *   This technique is useful when validation requires file parsing,
1164
 *   web service requests, or other expensive requests that should
1165
 *   not be repeated in the submission step.
1166
 */
1167
function drupal_validate_form($form_id, &$form, &$form_state) {
1168
  $validated_forms = &drupal_static(__FUNCTION__, array());
1169

    
1170
  if (isset($validated_forms[$form_id]) && empty($form_state['must_validate'])) {
1171
    return;
1172
  }
1173

    
1174
  // If the session token was set by drupal_prepare_form(), ensure that it
1175
  // matches the current user's session. This is duplicate to code in
1176
  // form_builder() but left to protect any custom form handling code.
1177
  if (!empty($form['#token'])) {
1178
    if (!drupal_valid_token($form_state['values']['form_token'], $form['#token']) || !empty($form_state['invalid_token'])) {
1179
      _drupal_invalid_token_set_form_error();
1180
      // Ignore all submitted values.
1181
      $form_state['input'] = array();
1182
      $_POST = array();
1183
      // Make sure file uploads do not get processed.
1184
      $_FILES = array();
1185
      // Stop here and don't run any further validation handlers, because they
1186
      // could invoke non-safe operations which opens the door for CSRF
1187
      // vulnerabilities.
1188
      $validated_forms[$form_id] = TRUE;
1189
      return;
1190
    }
1191
  }
1192

    
1193
  _form_validate($form, $form_state, $form_id);
1194
  $validated_forms[$form_id] = TRUE;
1195

    
1196
  // If validation errors are limited then remove any non validated form values,
1197
  // so that only values that passed validation are left for submit callbacks.
1198
  if (isset($form_state['triggering_element']['#limit_validation_errors']) && $form_state['triggering_element']['#limit_validation_errors'] !== FALSE) {
1199
    $values = array();
1200
    foreach ($form_state['triggering_element']['#limit_validation_errors'] as $section) {
1201
      // If the section exists within $form_state['values'], even if the value
1202
      // is NULL, copy it to $values.
1203
      $section_exists = NULL;
1204
      $value = drupal_array_get_nested_value($form_state['values'], $section, $section_exists);
1205
      if ($section_exists) {
1206
        drupal_array_set_nested_value($values, $section, $value);
1207
      }
1208
    }
1209
    // A button's #value does not require validation, so for convenience we
1210
    // allow the value of the clicked button to be retained in its normal
1211
    // $form_state['values'] locations, even if these locations are not included
1212
    // in #limit_validation_errors.
1213
    if (isset($form_state['triggering_element']['#button_type'])) {
1214
      $button_value = $form_state['triggering_element']['#value'];
1215

    
1216
      // Like all input controls, the button value may be in the location
1217
      // dictated by #parents. If it is, copy it to $values, but do not override
1218
      // what may already be in $values.
1219
      $parents = $form_state['triggering_element']['#parents'];
1220
      if (!drupal_array_nested_key_exists($values, $parents) && drupal_array_get_nested_value($form_state['values'], $parents) === $button_value) {
1221
        drupal_array_set_nested_value($values, $parents, $button_value);
1222
      }
1223

    
1224
      // Additionally, form_builder() places the button value in
1225
      // $form_state['values'][BUTTON_NAME]. If it's still there, after
1226
      // validation handlers have run, copy it to $values, but do not override
1227
      // what may already be in $values.
1228
      $name = $form_state['triggering_element']['#name'];
1229
      if (!isset($values[$name]) && isset($form_state['values'][$name]) && $form_state['values'][$name] === $button_value) {
1230
        $values[$name] = $button_value;
1231
      }
1232
    }
1233
    $form_state['values'] = $values;
1234
  }
1235
}
1236

    
1237
/**
1238
 * Redirects the user to a URL after a form has been processed.
1239
 *
1240
 * After a form is submitted and processed, normally the user should be
1241
 * redirected to a new destination page. This function figures out what that
1242
 * destination should be, based on the $form_state array and the 'destination'
1243
 * query string in the request URL, and redirects the user there.
1244
 *
1245
 * Usually (for exceptions, see below) $form_state['redirect'] determines where
1246
 * to redirect the user. This can be set either to a string (the path to
1247
 * redirect to), or an array of arguments for drupal_goto(). If
1248
 * $form_state['redirect'] is missing, the user is usually (again, see below for
1249
 * exceptions) redirected back to the page they came from, where they should see
1250
 * a fresh, unpopulated copy of the form.
1251
 *
1252
 * Here is an example of how to set up a form to redirect to the path 'node':
1253
 * @code
1254
 * $form_state['redirect'] = 'node';
1255
 * @endcode
1256
 * And here is an example of how to redirect to 'node/123?foo=bar#baz':
1257
 * @code
1258
 * $form_state['redirect'] = array(
1259
 *   'node/123',
1260
 *   array(
1261
 *     'query' => array(
1262
 *       'foo' => 'bar',
1263
 *     ),
1264
 *     'fragment' => 'baz',
1265
 *   ),
1266
 * );
1267
 * @endcode
1268
 *
1269
 * There are several exceptions to the "usual" behavior described above:
1270
 * - If $form_state['programmed'] is TRUE, the form submission was usually
1271
 *   invoked via drupal_form_submit(), so any redirection would break the script
1272
 *   that invoked drupal_form_submit() and no redirection is done.
1273
 * - If $form_state['rebuild'] is TRUE, the form is being rebuilt, and no
1274
 *   redirection is done.
1275
 * - If $form_state['no_redirect'] is TRUE, redirection is disabled. This is
1276
 *   set, for instance, by ajax_get_form() to prevent redirection in Ajax
1277
 *   callbacks. $form_state['no_redirect'] should never be set or altered by
1278
 *   form builder functions or form validation/submit handlers.
1279
 * - If $form_state['redirect'] is set to FALSE, redirection is disabled.
1280
 * - If none of the above conditions has prevented redirection, then the
1281
 *   redirect is accomplished by calling drupal_goto(), passing in the value of
1282
 *   $form_state['redirect'] if it is set, or the current path if it is
1283
 *   not. drupal_goto() preferentially uses the value of $_GET['destination']
1284
 *   (the 'destination' URL query string) if it is present, so this will
1285
 *   override any values set by $form_state['redirect']. Note that during
1286
 *   installation, install_goto() is called in place of drupal_goto().
1287
 *
1288
 * @param $form_state
1289
 *   An associative array containing the current state of the form.
1290
 *
1291
 * @see drupal_process_form()
1292
 * @see drupal_build_form()
1293
 */
1294
function drupal_redirect_form($form_state) {
1295
  // Skip redirection for form submissions invoked via drupal_form_submit().
1296
  if (!empty($form_state['programmed'])) {
1297
    return;
1298
  }
1299
  // Skip redirection if rebuild is activated.
1300
  if (!empty($form_state['rebuild'])) {
1301
    return;
1302
  }
1303
  // Skip redirection if it was explicitly disallowed.
1304
  if (!empty($form_state['no_redirect'])) {
1305
    return;
1306
  }
1307
  // Only invoke drupal_goto() if redirect value was not set to FALSE.
1308
  if (!isset($form_state['redirect']) || $form_state['redirect'] !== FALSE) {
1309
    if (isset($form_state['redirect'])) {
1310
      if (is_array($form_state['redirect'])) {
1311
        call_user_func_array('drupal_goto', $form_state['redirect']);
1312
      }
1313
      else {
1314
        // This function can be called from the installer, which guarantees
1315
        // that $redirect will always be a string, so catch that case here
1316
        // and use the appropriate redirect function.
1317
        $function = drupal_installation_attempted() ? 'install_goto' : 'drupal_goto';
1318
        $function($form_state['redirect']);
1319
      }
1320
    }
1321
    drupal_goto(current_path(), array('query' => drupal_get_query_parameters()));
1322
  }
1323
}
1324

    
1325
/**
1326
 * Performs validation on form elements.
1327
 *
1328
 * First ensures required fields are completed, #maxlength is not exceeded, and
1329
 * selected options were in the list of options given to the user. Then calls
1330
 * user-defined validators.
1331
 *
1332
 * @param $elements
1333
 *   An associative array containing the structure of the form.
1334
 * @param $form_state
1335
 *   A keyed array containing the current state of the form. The current
1336
 *   user-submitted data is stored in $form_state['values'], though
1337
 *   form validation functions are passed an explicit copy of the
1338
 *   values for the sake of simplicity. Validation handlers can also
1339
 *   $form_state to pass information on to submit handlers. For example:
1340
 *     $form_state['data_for_submission'] = $data;
1341
 *   This technique is useful when validation requires file parsing,
1342
 *   web service requests, or other expensive requests that should
1343
 *   not be repeated in the submission step.
1344
 * @param $form_id
1345
 *   A unique string identifying the form for validation, submission,
1346
 *   theming, and hook_form_alter functions.
1347
 */
1348
function _form_validate(&$elements, &$form_state, $form_id = NULL) {
1349
  // Also used in the installer, pre-database setup.
1350
  $t = get_t();
1351

    
1352
  // Recurse through all children.
1353
  foreach (element_children($elements) as $key) {
1354
    if (isset($elements[$key]) && $elements[$key]) {
1355
      _form_validate($elements[$key], $form_state);
1356
    }
1357
  }
1358

    
1359
  // Validate the current input.
1360
  if (!isset($elements['#validated']) || !$elements['#validated']) {
1361
    // The following errors are always shown.
1362
    if (isset($elements['#needs_validation'])) {
1363
      // Verify that the value is not longer than #maxlength.
1364
      if (isset($elements['#maxlength']) && (isset($elements['#value']) && !is_scalar($elements['#value']))) {
1365
        form_error($elements, $t('An illegal value has been detected. Please contact the site administrator.'));
1366
      }
1367
      elseif (isset($elements['#maxlength']) && drupal_strlen($elements['#value']) > $elements['#maxlength']) {
1368
        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']))));
1369
      }
1370

    
1371
      if (isset($elements['#options']) && isset($elements['#value'])) {
1372
        if ($elements['#type'] == 'select') {
1373
          $options = form_options_flatten($elements['#options']);
1374
        }
1375
        else {
1376
          $options = $elements['#options'];
1377
        }
1378
        if (is_array($elements['#value'])) {
1379
          $value = in_array($elements['#type'], array('checkboxes', 'tableselect')) ? array_keys($elements['#value']) : $elements['#value'];
1380
          foreach ($value as $v) {
1381
            if (!isset($options[$v])) {
1382
              form_error($elements, $t('An illegal choice has been detected. Please contact the site administrator.'));
1383
              watchdog('form', 'Illegal choice %choice in !name element.', array('%choice' => $v, '!name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title']), WATCHDOG_ERROR);
1384
            }
1385
          }
1386
        }
1387
        // Non-multiple select fields always have a value in HTML. If the user
1388
        // does not change the form, it will be the value of the first option.
1389
        // Because of this, form validation for the field will almost always
1390
        // pass, even if the user did not select anything. To work around this
1391
        // browser behavior, required select fields without a #default_value get
1392
        // an additional, first empty option. In case the submitted value is
1393
        // identical to the empty option's value, we reset the element's value
1394
        // to NULL to trigger the regular #required handling below.
1395
        // @see form_process_select()
1396
        elseif ($elements['#type'] == 'select' && !$elements['#multiple'] && $elements['#required'] && !isset($elements['#default_value']) && $elements['#value'] === $elements['#empty_value']) {
1397
          $elements['#value'] = NULL;
1398
          form_set_value($elements, NULL, $form_state);
1399
        }
1400
        elseif (!isset($options[$elements['#value']])) {
1401
          form_error($elements, $t('An illegal choice has been detected. Please contact the site administrator.'));
1402
          watchdog('form', 'Illegal choice %choice in %name element.', array('%choice' => $elements['#value'], '%name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title']), WATCHDOG_ERROR);
1403
        }
1404
      }
1405
    }
1406

    
1407
    // While this element is being validated, it may be desired that some calls
1408
    // to form_set_error() be suppressed and not result in a form error, so
1409
    // that a button that implements low-risk functionality (such as "Previous"
1410
    // or "Add more") that doesn't require all user input to be valid can still
1411
    // have its submit handlers triggered. The triggering element's
1412
    // #limit_validation_errors property contains the information for which
1413
    // errors are needed, and all other errors are to be suppressed. The
1414
    // #limit_validation_errors property is ignored if submit handlers will run,
1415
    // but the element doesn't have a #submit property, because it's too large a
1416
    // security risk to have any invalid user input when executing form-level
1417
    // submit handlers.
1418
    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']))) {
1419
      form_set_error(NULL, '', $form_state['triggering_element']['#limit_validation_errors']);
1420
    }
1421
    // If submit handlers won't run (due to the submission having been triggered
1422
    // by an element whose #executes_submit_callback property isn't TRUE), then
1423
    // it's safe to suppress all validation errors, and we do so by default,
1424
    // which is particularly useful during an Ajax submission triggered by a
1425
    // non-button. An element can override this default by setting the
1426
    // #limit_validation_errors property. For button element types,
1427
    // #limit_validation_errors defaults to FALSE (via system_element_info()),
1428
    // so that full validation is their default behavior.
1429
    elseif (isset($form_state['triggering_element']) && !isset($form_state['triggering_element']['#limit_validation_errors']) && !$form_state['submitted']) {
1430
      form_set_error(NULL, '', array());
1431
    }
1432
    // As an extra security measure, explicitly turn off error suppression if
1433
    // one of the above conditions wasn't met. Since this is also done at the
1434
    // end of this function, doing it here is only to handle the rare edge case
1435
    // where a validate handler invokes form processing of another form.
1436
    else {
1437
      drupal_static_reset('form_set_error:limit_validation_errors');
1438
    }
1439

    
1440
    // Make sure a value is passed when the field is required.
1441
    if (isset($elements['#needs_validation']) && $elements['#required']) {
1442
      // A simple call to empty() will not cut it here as some fields, like
1443
      // checkboxes, can return a valid value of '0'. Instead, check the
1444
      // length if it's a string, and the item count if it's an array.
1445
      // An unchecked checkbox has a #value of integer 0, different than string
1446
      // '0', which could be a valid value.
1447
      $is_countable = is_array($elements['#value']) || $elements['#value'] instanceof Countable;
1448
      $is_empty_multiple = $is_countable && count($elements['#value']) == 0;
1449
      $is_empty_string = (is_string($elements['#value']) && drupal_strlen(trim($elements['#value'])) == 0);
1450
      $is_empty_value = ($elements['#value'] === 0);
1451
      $is_empty_null = is_null($elements['#value']);
1452
      if ($is_empty_multiple || $is_empty_string || $is_empty_value || $is_empty_null) {
1453
        // Although discouraged, a #title is not mandatory for form elements. In
1454
        // case there is no #title, we cannot set a form error message.
1455
        // Instead of setting no #title, form constructors are encouraged to set
1456
        // #title_display to 'invisible' to improve accessibility.
1457
        if (isset($elements['#title'])) {
1458
          form_error($elements, $t('!name field is required.', array('!name' => $elements['#title'])));
1459
        }
1460
        else {
1461
          form_error($elements);
1462
        }
1463
      }
1464
    }
1465

    
1466
    // Call user-defined form level validators.
1467
    if (isset($form_id)) {
1468
      form_execute_handlers('validate', $elements, $form_state);
1469
    }
1470
    // Call any element-specific validators. These must act on the element
1471
    // #value data.
1472
    elseif (isset($elements['#element_validate'])) {
1473
      foreach ($elements['#element_validate'] as $function) {
1474
        $function($elements, $form_state, $form_state['complete form']);
1475
      }
1476
    }
1477
    $elements['#validated'] = TRUE;
1478
  }
1479

    
1480
  // Done validating this element, so turn off error suppression.
1481
  // _form_validate() turns it on again when starting on the next element, if
1482
  // it's still appropriate to do so.
1483
  drupal_static_reset('form_set_error:limit_validation_errors');
1484
}
1485

    
1486
/**
1487
 * Executes custom validation and submission handlers for a given form.
1488
 *
1489
 * Button-specific handlers are checked first. If none exist, the function
1490
 * falls back to form-level handlers.
1491
 *
1492
 * @param $type
1493
 *   The type of handler to execute. 'validate' or 'submit' are the
1494
 *   defaults used by Form API.
1495
 * @param $form
1496
 *   An associative array containing the structure of the form.
1497
 * @param $form_state
1498
 *   A keyed array containing the current state of the form. If the user
1499
 *   submitted the form by clicking a button with custom handler functions
1500
 *   defined, those handlers will be stored here.
1501
 */
1502
function form_execute_handlers($type, &$form, &$form_state) {
1503
  $return = FALSE;
1504
  // If there was a button pressed, use its handlers.
1505
  if (isset($form_state[$type . '_handlers'])) {
1506
    $handlers = $form_state[$type . '_handlers'];
1507
  }
1508
  // Otherwise, check for a form-level handler.
1509
  elseif (isset($form['#' . $type])) {
1510
    $handlers = $form['#' . $type];
1511
  }
1512
  else {
1513
    $handlers = array();
1514
  }
1515

    
1516
  foreach ($handlers as $function) {
1517
    // Check if a previous _submit handler has set a batch, but make sure we
1518
    // do not react to a batch that is already being processed (for instance
1519
    // if a batch operation performs a drupal_form_submit()).
1520
    if ($type == 'submit' && ($batch =& batch_get()) && !isset($batch['id'])) {
1521
      // Some previous submit handler has set a batch. To ensure correct
1522
      // execution order, store the call in a special 'control' batch set.
1523
      // See _batch_next_set().
1524
      $batch['sets'][] = array('form_submit' => $function);
1525
      $batch['has_form_submits'] = TRUE;
1526
    }
1527
    else {
1528
      $function($form, $form_state);
1529
    }
1530
    $return = TRUE;
1531
  }
1532
  return $return;
1533
}
1534

    
1535
/**
1536
 * Files an error against a form element.
1537
 *
1538
 * When a validation error is detected, the validator calls form_set_error() to
1539
 * indicate which element needs to be changed and provide an error message. This
1540
 * causes the Form API to not execute the form submit handlers, and instead to
1541
 * re-display the form to the user with the corresponding elements rendered with
1542
 * an 'error' CSS class (shown as red by default).
1543
 *
1544
 * The standard form_set_error() behavior can be changed if a button provides
1545
 * the #limit_validation_errors property. Multistep forms not wanting to
1546
 * validate the whole form can set #limit_validation_errors on buttons to
1547
 * limit validation errors to only certain elements. For example, pressing the
1548
 * "Previous" button in a multistep form should not fire validation errors just
1549
 * because the current step has invalid values. If #limit_validation_errors is
1550
 * set on a clicked button, the button must also define a #submit property
1551
 * (may be set to an empty array). Any #submit handlers will be executed even if
1552
 * there is invalid input, so extreme care should be taken with respect to any
1553
 * actions taken by them. This is typically not a problem with buttons like
1554
 * "Previous" or "Add more" that do not invoke persistent storage of the
1555
 * submitted form values. Do not use the #limit_validation_errors property on
1556
 * buttons that trigger saving of form values to the database.
1557
 *
1558
 * The #limit_validation_errors property is a list of "sections" within
1559
 * $form_state['values'] that must contain valid values. Each "section" is an
1560
 * array with the ordered set of keys needed to reach that part of
1561
 * $form_state['values'] (i.e., the #parents property of the element).
1562
 *
1563
 * Example 1: Allow the "Previous" button to function, regardless of whether any
1564
 * user input is valid.
1565
 *
1566
 * @code
1567
 *   $form['actions']['previous'] = array(
1568
 *     '#type' => 'submit',
1569
 *     '#value' => t('Previous'),
1570
 *     '#limit_validation_errors' => array(),       // No validation.
1571
 *     '#submit' => array('some_submit_function'),  // #submit required.
1572
 *   );
1573
 * @endcode
1574
 *
1575
 * Example 2: Require some, but not all, user input to be valid to process the
1576
 * submission of a "Previous" button.
1577
 *
1578
 * @code
1579
 *   $form['actions']['previous'] = array(
1580
 *     '#type' => 'submit',
1581
 *     '#value' => t('Previous'),
1582
 *     '#limit_validation_errors' => array(
1583
 *       array('step1'),       // Validate $form_state['values']['step1'].
1584
 *       array('foo', 'bar'),  // Validate $form_state['values']['foo']['bar'].
1585
 *     ),
1586
 *     '#submit' => array('some_submit_function'), // #submit required.
1587
 *   );
1588
 * @endcode
1589
 *
1590
 * This will require $form_state['values']['step1'] and everything within it
1591
 * (for example, $form_state['values']['step1']['choice']) to be valid, so
1592
 * calls to form_set_error('step1', $message) or
1593
 * form_set_error('step1][choice', $message) will prevent the submit handlers
1594
 * from running, and result in the error message being displayed to the user.
1595
 * However, calls to form_set_error('step2', $message) and
1596
 * form_set_error('step2][groupX][choiceY', $message) will be suppressed,
1597
 * resulting in the message not being displayed to the user, and the submit
1598
 * handlers will run despite $form_state['values']['step2'] and
1599
 * $form_state['values']['step2']['groupX']['choiceY'] containing invalid
1600
 * values. Errors for an invalid $form_state['values']['foo'] will be
1601
 * suppressed, but errors flagging invalid values for
1602
 * $form_state['values']['foo']['bar'] and everything within it will be
1603
 * flagged and submission prevented.
1604
 *
1605
 * Partial form validation is implemented by suppressing errors rather than by
1606
 * skipping the input processing and validation steps entirely, because some
1607
 * forms have button-level submit handlers that call Drupal API functions that
1608
 * assume that certain data exists within $form_state['values'], and while not
1609
 * doing anything with that data that requires it to be valid, PHP errors
1610
 * would be triggered if the input processing and validation steps were fully
1611
 * skipped.
1612
 *
1613
 * @param $name
1614
 *   The name of the form element. If the #parents property of your form
1615
 *   element is array('foo', 'bar', 'baz') then you may set an error on 'foo'
1616
 *   or 'foo][bar][baz'. Setting an error on 'foo' sets an error for every
1617
 *   element where the #parents array starts with 'foo'.
1618
 * @param $message
1619
 *   The error message to present to the user.
1620
 * @param $limit_validation_errors
1621
 *   Internal use only. The #limit_validation_errors property of the clicked
1622
 *   button, if it exists.
1623
 *
1624
 * @return
1625
 *   Return value is for internal use only. To get a list of errors, use
1626
 *   form_get_errors() or form_get_error().
1627
 *
1628
 * @see http://drupal.org/node/370537
1629
 * @see http://drupal.org/node/763376
1630
 */
1631
function form_set_error($name = NULL, $message = '', $limit_validation_errors = NULL) {
1632
  $form = &drupal_static(__FUNCTION__, array());
1633
  $sections = &drupal_static(__FUNCTION__ . ':limit_validation_errors');
1634
  if (isset($limit_validation_errors)) {
1635
    $sections = $limit_validation_errors;
1636
  }
1637

    
1638
  if (isset($name) && !isset($form[$name])) {
1639
    $record = TRUE;
1640
    if (isset($sections)) {
1641
      // #limit_validation_errors is an array of "sections" within which user
1642
      // input must be valid. If the element is within one of these sections,
1643
      // the error must be recorded. Otherwise, it can be suppressed.
1644
      // #limit_validation_errors can be an empty array, in which case all
1645
      // errors are suppressed. For example, a "Previous" button might want its
1646
      // submit action to be triggered even if none of the submitted values are
1647
      // valid.
1648
      $record = FALSE;
1649
      foreach ($sections as $section) {
1650
        // Exploding by '][' reconstructs the element's #parents. If the
1651
        // reconstructed #parents begin with the same keys as the specified
1652
        // section, then the element's values are within the part of
1653
        // $form_state['values'] that the clicked button requires to be valid,
1654
        // so errors for this element must be recorded. As the exploded array
1655
        // will all be strings, we need to cast every value of the section
1656
        // array to string.
1657
        if (array_slice(explode('][', $name), 0, count($section)) === array_map('strval', $section)) {
1658
          $record = TRUE;
1659
          break;
1660
        }
1661
      }
1662
    }
1663
    if ($record) {
1664
      $form[$name] = $message;
1665
      if ($message) {
1666
        drupal_set_message($message, 'error');
1667
      }
1668
    }
1669
  }
1670

    
1671
  return $form;
1672
}
1673

    
1674
/**
1675
 * Clears all errors against all form elements made by form_set_error().
1676
 */
1677
function form_clear_error() {
1678
  drupal_static_reset('form_set_error');
1679
}
1680

    
1681
/**
1682
 * Returns an associative array of all errors.
1683
 */
1684
function form_get_errors() {
1685
  $form = form_set_error();
1686
  if (!empty($form)) {
1687
    return $form;
1688
  }
1689
}
1690

    
1691
/**
1692
 * Returns the error message filed against the given form element.
1693
 *
1694
 * Form errors higher up in the form structure override deeper errors as well as
1695
 * errors on the element itself.
1696
 */
1697
function form_get_error($element) {
1698
  $form = form_set_error();
1699
  $parents = array();
1700
  foreach ($element['#parents'] as $parent) {
1701
    $parents[] = $parent;
1702
    $key = implode('][', $parents);
1703
    if (isset($form[$key])) {
1704
      return $form[$key];
1705
    }
1706
  }
1707
}
1708

    
1709
/**
1710
 * Flags an element as having an error.
1711
 */
1712
function form_error(&$element, $message = '') {
1713
  form_set_error(implode('][', $element['#parents']), $message);
1714
}
1715

    
1716
/**
1717
 * Builds and processes all elements in the structured form array.
1718
 *
1719
 * Adds any required properties to each element, maps the incoming input data
1720
 * to the proper elements, and executes any #process handlers attached to a
1721
 * specific element.
1722
 *
1723
 * This is one of the three primary functions that recursively iterates a form
1724
 * array. This one does it for completing the form building process. The other
1725
 * two are _form_validate() (invoked via drupal_validate_form() and used to
1726
 * invoke validation logic for each element) and drupal_render() (for rendering
1727
 * each element). Each of these three pipelines provides ample opportunity for
1728
 * modules to customize what happens. For example, during this function's life
1729
 * cycle, the following functions get called for each element:
1730
 * - $element['#value_callback']: A function that implements how user input is
1731
 *   mapped to an element's #value property. This defaults to a function named
1732
 *   'form_type_TYPE_value' where TYPE is $element['#type'].
1733
 * - $element['#process']: An array of functions called after user input has
1734
 *   been mapped to the element's #value property. These functions can be used
1735
 *   to dynamically add child elements: for example, for the 'date' element
1736
 *   type, one of the functions in this array is form_process_date(), which adds
1737
 *   the individual 'year', 'month', 'day', etc. child elements. These functions
1738
 *   can also be used to set additional properties or implement special logic
1739
 *   other than adding child elements: for example, for the 'fieldset' element
1740
 *   type, one of the functions in this array is form_process_fieldset(), which
1741
 *   adds the attributes and JavaScript needed to make the fieldset collapsible
1742
 *   if the #collapsible property is set. The #process functions are called in
1743
 *   preorder traversal, meaning they are called for the parent element first,
1744
 *   then for the child elements.
1745
 * - $element['#after_build']: An array of functions called after form_builder()
1746
 *   is done with its processing of the element. These are called in postorder
1747
 *   traversal, meaning they are called for the child elements first, then for
1748
 *   the parent element.
1749
 * There are similar properties containing callback functions invoked by
1750
 * _form_validate() and drupal_render(), appropriate for those operations.
1751
 *
1752
 * Developers are strongly encouraged to integrate the functionality needed by
1753
 * their form or module within one of these three pipelines, using the
1754
 * appropriate callback property, rather than implementing their own recursive
1755
 * traversal of a form array. This facilitates proper integration between
1756
 * multiple modules. For example, module developers are familiar with the
1757
 * relative order in which hook_form_alter() implementations and #process
1758
 * functions run. A custom traversal function that affects the building of a
1759
 * form is likely to not integrate with hook_form_alter() and #process in the
1760
 * expected way. Also, deep recursion within PHP is both slow and memory
1761
 * intensive, so it is best to minimize how often it's done.
1762
 *
1763
 * As stated above, each element's #process functions are executed after its
1764
 * #value has been set. This enables those functions to execute conditional
1765
 * logic based on the current value. However, all of form_builder() runs before
1766
 * drupal_validate_form() is called, so during #process function execution, the
1767
 * element's #value has not yet been validated, so any code that requires
1768
 * validated values must reside within a submit handler.
1769
 *
1770
 * As a security measure, user input is used for an element's #value only if the
1771
 * element exists within $form, is not disabled (as per the #disabled property),
1772
 * and can be accessed (as per the #access property, except that forms submitted
1773
 * using drupal_form_submit() bypass #access restrictions). When user input is
1774
 * ignored due to #disabled and #access restrictions, the element's default
1775
 * value is used.
1776
 *
1777
 * Because of the preorder traversal, where #process functions of an element run
1778
 * before user input for its child elements is processed, and because of the
1779
 * Form API security of user input processing with respect to #access and
1780
 * #disabled described above, this generally means that #process functions
1781
 * should not use an element's (unvalidated) #value to affect the #disabled or
1782
 * #access of child elements. Use-cases where a developer may be tempted to
1783
 * implement such conditional logic usually fall into one of two categories:
1784
 * - Where user input from the current submission must affect the structure of a
1785
 *   form, including properties like #access and #disabled that affect how the
1786
 *   next submission needs to be processed, a multi-step workflow is needed.
1787
 *   This is most commonly implemented with a submit handler setting persistent
1788
 *   data within $form_state based on *validated* values in
1789
 *   $form_state['values'] and setting $form_state['rebuild']. The form building
1790
 *   functions must then be implemented to use the $form_state data to rebuild
1791
 *   the form with the structure appropriate for the new state.
1792
 * - Where user input must affect the rendering of the form without affecting
1793
 *   its structure, the necessary conditional rendering logic should reside
1794
 *   within functions that run during the rendering phase (#pre_render, #theme,
1795
 *   #theme_wrappers, and #post_render).
1796
 *
1797
 * @param $form_id
1798
 *   A unique string identifying the form for validation, submission,
1799
 *   theming, and hook_form_alter functions.
1800
 * @param $element
1801
 *   An associative array containing the structure of the current element.
1802
 * @param $form_state
1803
 *   A keyed array containing the current state of the form. In this
1804
 *   context, it is used to accumulate information about which button
1805
 *   was clicked when the form was submitted, as well as the sanitized
1806
 *   $_POST data.
1807
 */
1808
function form_builder($form_id, &$element, &$form_state) {
1809
  // Initialize as unprocessed.
1810
  $element['#processed'] = FALSE;
1811

    
1812
  // Use element defaults.
1813
  if (isset($element['#type']) && empty($element['#defaults_loaded']) && ($info = element_info($element['#type']))) {
1814
    // Overlay $info onto $element, retaining preexisting keys in $element.
1815
    $element += $info;
1816
    $element['#defaults_loaded'] = TRUE;
1817
  }
1818
  // Assign basic defaults common for all form elements.
1819
  $element += array(
1820
    '#required' => FALSE,
1821
    '#attributes' => array(),
1822
    '#title_display' => 'before',
1823
  );
1824

    
1825
  // Special handling if we're on the top level form element.
1826
  if (isset($element['#type']) && $element['#type'] == 'form') {
1827
    if (!empty($element['#https']) && variable_get('https', FALSE) &&
1828
        !url_is_external($element['#action'])) {
1829
      global $base_root;
1830

    
1831
      // Not an external URL so ensure that it is secure.
1832
      $element['#action'] = str_replace('http://', 'https://', $base_root) . $element['#action'];
1833
    }
1834

    
1835
    // Store a reference to the complete form in $form_state prior to building
1836
    // the form. This allows advanced #process and #after_build callbacks to
1837
    // perform changes elsewhere in the form.
1838
    $form_state['complete form'] = &$element;
1839

    
1840
    // Set a flag if we have a correct form submission. This is always TRUE for
1841
    // programmed forms coming from drupal_form_submit(), or if the form_id coming
1842
    // from the POST data is set and matches the current form_id.
1843
    if ($form_state['programmed'] || (!empty($form_state['input']) && (isset($form_state['input']['form_id']) && ($form_state['input']['form_id'] == $form_id)))) {
1844
      $form_state['process_input'] = TRUE;
1845
      // If the session token was set by drupal_prepare_form(), ensure that it
1846
      // matches the current user's session.
1847
      $form_state['invalid_token'] = FALSE;
1848
      if (!empty($element['#token'])) {
1849
        if (empty($form_state['input']['form_token']) || !drupal_valid_token($form_state['input']['form_token'], $element['#token'])) {
1850
          // Set an early form error to block certain input processing since that
1851
          // opens the door for CSRF vulnerabilities.
1852
          _drupal_invalid_token_set_form_error();
1853
          // This value is checked in _form_builder_handle_input_element().
1854
          $form_state['invalid_token'] = TRUE;
1855
          // Ignore all submitted values.
1856
          $form_state['input'] = array();
1857
          $_POST = array();
1858
          // Make sure file uploads do not get processed.
1859
          $_FILES = array();
1860
        }
1861
      }
1862
    }
1863
    else {
1864
      $form_state['process_input'] = FALSE;
1865
    }
1866

    
1867
    // All form elements should have an #array_parents property.
1868
    $element['#array_parents'] = array();
1869
  }
1870

    
1871
  if (!isset($element['#id'])) {
1872
    $element['#id'] = drupal_html_id('edit-' . implode('-', $element['#parents']));
1873
  }
1874
  // Handle input elements.
1875
  if (!empty($element['#input'])) {
1876
    _form_builder_handle_input_element($form_id, $element, $form_state);
1877
  }
1878
  // Allow for elements to expand to multiple elements, e.g., radios,
1879
  // checkboxes and files.
1880
  if (isset($element['#process']) && !$element['#processed']) {
1881
    foreach ($element['#process'] as $process) {
1882
      $element = $process($element, $form_state, $form_state['complete form']);
1883
    }
1884
    $element['#processed'] = TRUE;
1885
  }
1886

    
1887
  // We start off assuming all form elements are in the correct order.
1888
  $element['#sorted'] = TRUE;
1889

    
1890
  // Recurse through all child elements.
1891
  $count = 0;
1892
  foreach (element_children($element) as $key) {
1893
    // Prior to checking properties of child elements, their default properties
1894
    // need to be loaded.
1895
    if (isset($element[$key]['#type']) && empty($element[$key]['#defaults_loaded']) && ($info = element_info($element[$key]['#type']))) {
1896
      $element[$key] += $info;
1897
      $element[$key]['#defaults_loaded'] = TRUE;
1898
    }
1899

    
1900
    // Don't squash an existing tree value.
1901
    if (!isset($element[$key]['#tree'])) {
1902
      $element[$key]['#tree'] = $element['#tree'];
1903
    }
1904

    
1905
    // Deny access to child elements if parent is denied.
1906
    if (isset($element['#access']) && !$element['#access']) {
1907
      $element[$key]['#access'] = FALSE;
1908
    }
1909

    
1910
    // Make child elements inherit their parent's #disabled and #allow_focus
1911
    // values unless they specify their own.
1912
    foreach (array('#disabled', '#allow_focus') as $property) {
1913
      if (isset($element[$property]) && !isset($element[$key][$property])) {
1914
        $element[$key][$property] = $element[$property];
1915
      }
1916
    }
1917

    
1918
    // Don't squash existing parents value.
1919
    if (!isset($element[$key]['#parents'])) {
1920
      // Check to see if a tree of child elements is present. If so,
1921
      // continue down the tree if required.
1922
      $element[$key]['#parents'] = $element[$key]['#tree'] && $element['#tree'] ? array_merge($element['#parents'], array($key)) : array($key);
1923
    }
1924
    // Ensure #array_parents follows the actual form structure.
1925
    $array_parents = $element['#array_parents'];
1926
    $array_parents[] = $key;
1927
    $element[$key]['#array_parents'] = $array_parents;
1928

    
1929
    // Assign a decimal placeholder weight to preserve original array order.
1930
    if (!isset($element[$key]['#weight'])) {
1931
      $element[$key]['#weight'] = $count/1000;
1932
    }
1933
    else {
1934
      // If one of the child elements has a weight then we will need to sort
1935
      // later.
1936
      unset($element['#sorted']);
1937
    }
1938
    $element[$key] = form_builder($form_id, $element[$key], $form_state);
1939
    $count++;
1940
  }
1941

    
1942
  // The #after_build flag allows any piece of a form to be altered
1943
  // after normal input parsing has been completed.
1944
  if (isset($element['#after_build']) && !isset($element['#after_build_done'])) {
1945
    foreach ($element['#after_build'] as $function) {
1946
      $element = $function($element, $form_state);
1947
    }
1948
    $element['#after_build_done'] = TRUE;
1949
  }
1950

    
1951
  // If there is a file element, we need to flip a flag so later the
1952
  // form encoding can be set.
1953
  if (isset($element['#type']) && $element['#type'] == 'file') {
1954
    $form_state['has_file_element'] = TRUE;
1955
  }
1956

    
1957
  // Final tasks for the form element after form_builder() has run for all other
1958
  // elements.
1959
  if (isset($element['#type']) && $element['#type'] == 'form') {
1960
    // If there is a file element, we set the form encoding.
1961
    if (isset($form_state['has_file_element'])) {
1962
      $element['#attributes']['enctype'] = 'multipart/form-data';
1963
    }
1964

    
1965
    // Allow Ajax submissions to the form action to bypass verification. This is
1966
    // especially useful for multipart forms, which cannot be verified via a
1967
    // response header.
1968
    $element['#attached']['js'][] = array(
1969
      'type' => 'setting',
1970
      'data' => array(
1971
        'urlIsAjaxTrusted' => array(
1972
          $element['#action'] => TRUE,
1973
        ),
1974
      ),
1975
    );
1976

    
1977
    // If a form contains a single textfield, and the ENTER key is pressed
1978
    // within it, Internet Explorer submits the form with no POST data
1979
    // identifying any submit button. Other browsers submit POST data as though
1980
    // the user clicked the first button. Therefore, to be as consistent as we
1981
    // can be across browsers, if no 'triggering_element' has been identified
1982
    // yet, default it to the first button.
1983
    if (!$form_state['programmed'] && !isset($form_state['triggering_element']) && !empty($form_state['buttons'])) {
1984
      $form_state['triggering_element'] = $form_state['buttons'][0];
1985
    }
1986

    
1987
    // If the triggering element specifies "button-level" validation and submit
1988
    // handlers to run instead of the default form-level ones, then add those to
1989
    // the form state.
1990
    foreach (array('validate', 'submit') as $type) {
1991
      if (isset($form_state['triggering_element']['#' . $type])) {
1992
        $form_state[$type . '_handlers'] = $form_state['triggering_element']['#' . $type];
1993
      }
1994
    }
1995

    
1996
    // If the triggering element executes submit handlers, then set the form
1997
    // state key that's needed for those handlers to run.
1998
    if (!empty($form_state['triggering_element']['#executes_submit_callback'])) {
1999
      $form_state['submitted'] = TRUE;
2000
    }
2001

    
2002
    // Special processing if the triggering element is a button.
2003
    if (isset($form_state['triggering_element']['#button_type'])) {
2004
      // Because there are several ways in which the triggering element could
2005
      // have been determined (including from input variables set by JavaScript
2006
      // or fallback behavior implemented for IE), and because buttons often
2007
      // have their #name property not derived from their #parents property, we
2008
      // can't assume that input processing that's happened up until here has
2009
      // resulted in $form_state['values'][BUTTON_NAME] being set. But it's
2010
      // common for forms to have several buttons named 'op' and switch on
2011
      // $form_state['values']['op'] during submit handler execution.
2012
      $form_state['values'][$form_state['triggering_element']['#name']] = $form_state['triggering_element']['#value'];
2013

    
2014
      // @todo Legacy support. Remove in Drupal 8.
2015
      $form_state['clicked_button'] = $form_state['triggering_element'];
2016
    }
2017
  }
2018
  return $element;
2019
}
2020

    
2021
/**
2022
 * Adds the #name and #value properties of an input element before rendering.
2023
 */
2024
function _form_builder_handle_input_element($form_id, &$element, &$form_state) {
2025
  static $safe_core_value_callbacks = array(
2026
    'form_type_token_value',
2027
    'form_type_textarea_value',
2028
    'form_type_textfield_value',
2029
    'form_type_checkbox_value',
2030
    'form_type_checkboxes_value',
2031
    'form_type_radios_value',
2032
    'form_type_password_confirm_value',
2033
    'form_type_select_value',
2034
    'form_type_tableselect_value',
2035
    'list_boolean_allowed_values_callback',
2036
  );
2037

    
2038
  if (!isset($element['#name'])) {
2039
    $name = array_shift($element['#parents']);
2040
    $element['#name'] = $name;
2041
    if ($element['#type'] == 'file') {
2042
      // To make it easier to handle $_FILES in file.inc, we place all
2043
      // file fields in the 'files' array. Also, we do not support
2044
      // nested file names.
2045
      $element['#name'] = 'files[' . $element['#name'] . ']';
2046
    }
2047
    elseif (count($element['#parents'])) {
2048
      $element['#name'] .= '[' . implode('][', $element['#parents']) . ']';
2049
    }
2050
    array_unshift($element['#parents'], $name);
2051
  }
2052

    
2053
  // Setting #disabled to TRUE results in user input being ignored, regardless
2054
  // of how the element is themed or whether JavaScript is used to change the
2055
  // control's attributes. However, it's good UI to let the user know that input
2056
  // is not wanted for the control. HTML supports two attributes for this:
2057
  // http://www.w3.org/TR/html401/interact/forms.html#h-17.12. If a form wants
2058
  // to start a control off with one of these attributes for UI purposes only,
2059
  // but still allow input to be processed if it's sumitted, it can set the
2060
  // desired attribute in #attributes directly rather than using #disabled.
2061
  // However, developers should think carefully about the accessibility
2062
  // implications of doing so: if the form expects input to be enterable under
2063
  // some condition triggered by JavaScript, how would someone who has
2064
  // JavaScript disabled trigger that condition? Instead, developers should
2065
  // consider whether a multi-step form would be more appropriate (#disabled can
2066
  // be changed from step to step). If one still decides to use JavaScript to
2067
  // affect when a control is enabled, then it is best for accessibility for the
2068
  // control to be enabled in the HTML, and disabled by JavaScript on document
2069
  // ready.
2070
  if (!empty($element['#disabled'])) {
2071
    if (!empty($element['#allow_focus'])) {
2072
      $element['#attributes']['readonly'] = 'readonly';
2073
    }
2074
    else {
2075
      $element['#attributes']['disabled'] = 'disabled';
2076
    }
2077
  }
2078

    
2079
  // With JavaScript or other easy hacking, input can be submitted even for
2080
  // elements with #access=FALSE or #disabled=TRUE. For security, these must
2081
  // not be processed. Forms that set #disabled=TRUE on an element do not
2082
  // expect input for the element, and even forms submitted with
2083
  // drupal_form_submit() must not be able to get around this. Forms that set
2084
  // #access=FALSE on an element usually allow access for some users, so forms
2085
  // submitted with drupal_form_submit() may bypass access restriction and be
2086
  // treated as high-privilege users instead.
2087
  $process_input = empty($element['#disabled']) && (($form_state['programmed'] && $form_state['programmed_bypass_access_check']) || ($form_state['process_input'] && (!isset($element['#access']) || $element['#access'])));
2088

    
2089
  // Set the element's #value property.
2090
  if (!isset($element['#value']) && !array_key_exists('#value', $element)) {
2091
    $value_callback = !empty($element['#value_callback']) ? $element['#value_callback'] : 'form_type_' . $element['#type'] . '_value';
2092
    if ($process_input) {
2093
      // Get the input for the current element. NULL values in the input need to
2094
      // be explicitly distinguished from missing input. (see below)
2095
      $input_exists = NULL;
2096
      $input = drupal_array_get_nested_value($form_state['input'], $element['#parents'], $input_exists);
2097
      // For browser-submitted forms, the submitted values do not contain values
2098
      // for certain elements (empty multiple select, unchecked checkbox).
2099
      // During initial form processing, we add explicit NULL values for such
2100
      // elements in $form_state['input']. When rebuilding the form, we can
2101
      // distinguish elements having NULL input from elements that were not part
2102
      // of the initially submitted form and can therefore use default values
2103
      // for the latter, if required. Programmatically submitted forms can
2104
      // submit explicit NULL values when calling drupal_form_submit(), so we do
2105
      // not modify $form_state['input'] for them.
2106
      if (!$input_exists && !$form_state['rebuild'] && !$form_state['programmed']) {
2107
        // Add the necessary parent keys to $form_state['input'] and sets the
2108
        // element's input value to NULL.
2109
        drupal_array_set_nested_value($form_state['input'], $element['#parents'], NULL);
2110
        $input_exists = TRUE;
2111
      }
2112
      // If we have input for the current element, assign it to the #value
2113
      // property, optionally filtered through $value_callback.
2114
      if ($input_exists) {
2115
        if (function_exists($value_callback)) {
2116
          // Skip all value callbacks except safe ones like text if the CSRF
2117
          // token was invalid.
2118
          if (empty($form_state['invalid_token']) || in_array($value_callback, $safe_core_value_callbacks)) {
2119
            $element['#value'] = $value_callback($element, $input, $form_state);
2120
          }
2121
          else {
2122
            $input = NULL;
2123
          }
2124
        }
2125
        if (!isset($element['#value']) && isset($input)) {
2126
          $element['#value'] = $input;
2127
        }
2128
      }
2129
      // Mark all posted values for validation.
2130
      if (isset($element['#value']) || (!empty($element['#required']))) {
2131
        $element['#needs_validation'] = TRUE;
2132
      }
2133
    }
2134
    // Load defaults.
2135
    if (!isset($element['#value'])) {
2136
      // Call #type_value without a second argument to request default_value handling.
2137
      if (function_exists($value_callback)) {
2138
        $element['#value'] = $value_callback($element, FALSE, $form_state);
2139
      }
2140
      // Final catch. If we haven't set a value yet, use the explicit default value.
2141
      // Avoid image buttons (which come with garbage value), so we only get value
2142
      // for the button actually clicked.
2143
      if (!isset($element['#value']) && empty($element['#has_garbage_value'])) {
2144
        $element['#value'] = isset($element['#default_value']) ? $element['#default_value'] : '';
2145
      }
2146
    }
2147
  }
2148

    
2149
  // Determine which element (if any) triggered the submission of the form and
2150
  // keep track of all the clickable buttons in the form for
2151
  // form_state_values_clean(). Enforce the same input processing restrictions
2152
  // as above.
2153
  if ($process_input) {
2154
    // Detect if the element triggered the submission via Ajax.
2155
    if (_form_element_triggered_scripted_submission($element, $form_state)) {
2156
      $form_state['triggering_element'] = $element;
2157
    }
2158

    
2159
    // If the form was submitted by the browser rather than via Ajax, then it
2160
    // can only have been triggered by a button, and we need to determine which
2161
    // button within the constraints of how browsers provide this information.
2162
    if (isset($element['#button_type'])) {
2163
      // All buttons in the form need to be tracked for
2164
      // form_state_values_clean() and for the form_builder() code that handles
2165
      // a form submission containing no button information in $_POST.
2166
      $form_state['buttons'][] = $element;
2167
      if (_form_button_was_clicked($element, $form_state)) {
2168
        $form_state['triggering_element'] = $element;
2169
      }
2170
    }
2171
  }
2172

    
2173
  // Set the element's value in $form_state['values'], but only, if its key
2174
  // does not exist yet (a #value_callback may have already populated it).
2175
  if (!drupal_array_nested_key_exists($form_state['values'], $element['#parents'])) {
2176
    form_set_value($element, $element['#value'], $form_state);
2177
  }
2178
}
2179

    
2180
/**
2181
 * Detects if an element triggered the form submission via Ajax.
2182
 *
2183
 * This detects button or non-button controls that trigger a form submission via
2184
 * Ajax or some other scriptable environment. These environments can set the
2185
 * special input key '_triggering_element_name' to identify the triggering
2186
 * element. If the name alone doesn't identify the element uniquely, the input
2187
 * key '_triggering_element_value' may also be set to require a match on element
2188
 * value. An example where this is needed is if there are several buttons all
2189
 * named 'op', and only differing in their value.
2190
 */
2191
function _form_element_triggered_scripted_submission($element, &$form_state) {
2192
  if (!empty($form_state['input']['_triggering_element_name']) && $element['#name'] == $form_state['input']['_triggering_element_name']) {
2193
    if (empty($form_state['input']['_triggering_element_value']) || $form_state['input']['_triggering_element_value'] == $element['#value']) {
2194
      return TRUE;
2195
    }
2196
  }
2197
  return FALSE;
2198
}
2199

    
2200
/**
2201
 * Determines if a given button triggered the form submission.
2202
 *
2203
 * This detects button controls that trigger a form submission by being clicked
2204
 * and having the click processed by the browser rather than being captured by
2205
 * JavaScript. Essentially, it detects if the button's name and value are part
2206
 * of the POST data, but with extra code to deal with the convoluted way in
2207
 * which browsers submit data for image button clicks.
2208
 *
2209
 * This does not detect button clicks processed by Ajax (that is done in
2210
 * _form_element_triggered_scripted_submission()) and it does not detect form
2211
 * submissions from Internet Explorer in response to an ENTER key pressed in a
2212
 * textfield (form_builder() has extra code for that).
2213
 *
2214
 * Because this function contains only part of the logic needed to determine
2215
 * $form_state['triggering_element'], it should not be called from anywhere
2216
 * other than within the Form API. Form validation and submit handlers needing
2217
 * to know which button was clicked should get that information from
2218
 * $form_state['triggering_element'].
2219
 */
2220
function _form_button_was_clicked($element, &$form_state) {
2221
  // First detect normal 'vanilla' button clicks. Traditionally, all
2222
  // standard buttons on a form share the same name (usually 'op'),
2223
  // and the specific return value is used to determine which was
2224
  // clicked. This ONLY works as long as $form['#name'] puts the
2225
  // value at the top level of the tree of $_POST data.
2226
  if (isset($form_state['input'][$element['#name']]) && $form_state['input'][$element['#name']] == $element['#value']) {
2227
    return TRUE;
2228
  }
2229
  // When image buttons are clicked, browsers do NOT pass the form element
2230
  // value in $_POST. Instead they pass an integer representing the
2231
  // coordinates of the click on the button image. This means that image
2232
  // buttons MUST have unique $form['#name'] values, but the details of
2233
  // their $_POST data should be ignored.
2234
  elseif (!empty($element['#has_garbage_value']) && isset($element['#value']) && $element['#value'] !== '') {
2235
    return TRUE;
2236
  }
2237
  return FALSE;
2238
}
2239

    
2240
/**
2241
 * Removes internal Form API elements and buttons from submitted form values.
2242
 *
2243
 * This function can be used when a module wants to store all submitted form
2244
 * values, for example, by serializing them into a single database column. In
2245
 * such cases, all internal Form API values and all form button elements should
2246
 * not be contained, and this function allows to remove them before the module
2247
 * proceeds to storage. Next to button elements, the following internal values
2248
 * are removed:
2249
 * - form_id
2250
 * - form_token
2251
 * - form_build_id
2252
 * - op
2253
 *
2254
 * @param $form_state
2255
 *   A keyed array containing the current state of the form, including
2256
 *   submitted form values; altered by reference.
2257
 */
2258
function form_state_values_clean(&$form_state) {
2259
  // Remove internal Form API values.
2260
  unset($form_state['values']['form_id'], $form_state['values']['form_token'], $form_state['values']['form_build_id'], $form_state['values']['op']);
2261

    
2262
  // Remove button values.
2263
  // form_builder() collects all button elements in a form. We remove the button
2264
  // value separately for each button element.
2265
  foreach ($form_state['buttons'] as $button) {
2266
    // Remove this button's value from the submitted form values by finding
2267
    // the value corresponding to this button.
2268
    // We iterate over the #parents of this button and move a reference to
2269
    // each parent in $form_state['values']. For example, if #parents is:
2270
    //   array('foo', 'bar', 'baz')
2271
    // then the corresponding $form_state['values'] part will look like this:
2272
    // array(
2273
    //   'foo' => array(
2274
    //     'bar' => array(
2275
    //       'baz' => 'button_value',
2276
    //     ),
2277
    //   ),
2278
    // )
2279
    // We start by (re)moving 'baz' to $last_parent, so we are able unset it
2280
    // at the end of the iteration. Initially, $values will contain a
2281
    // reference to $form_state['values'], but in the iteration we move the
2282
    // reference to $form_state['values']['foo'], and finally to
2283
    // $form_state['values']['foo']['bar'], which is the level where we can
2284
    // unset 'baz' (that is stored in $last_parent).
2285
    $parents = $button['#parents'];
2286
    $last_parent = array_pop($parents);
2287
    $key_exists = NULL;
2288
    $values = &drupal_array_get_nested_value($form_state['values'], $parents, $key_exists);
2289
    if ($key_exists && is_array($values)) {
2290
      unset($values[$last_parent]);
2291
    }
2292
  }
2293
}
2294

    
2295
/**
2296
 * Determines the value for an image button form element.
2297
 *
2298
 * @param $form
2299
 *   The form element whose value is being populated.
2300
 * @param $input
2301
 *   The incoming input to populate the form element. If this is FALSE,
2302
 *   the element's default value should be returned.
2303
 * @param $form_state
2304
 *   A keyed array containing the current state of the form.
2305
 *
2306
 * @return
2307
 *   The data that will appear in the $form_state['values'] collection
2308
 *   for this element. Return nothing to use the default.
2309
 */
2310
function form_type_image_button_value($form, $input, $form_state) {
2311
  if ($input !== FALSE) {
2312
    if (!empty($input)) {
2313
      // If we're dealing with Mozilla or Opera, we're lucky. It will
2314
      // return a proper value, and we can get on with things.
2315
      return $form['#return_value'];
2316
    }
2317
    else {
2318
      // Unfortunately, in IE we never get back a proper value for THIS
2319
      // form element. Instead, we get back two split values: one for the
2320
      // X and one for the Y coordinates on which the user clicked the
2321
      // button. We'll find this element in the #post data, and search
2322
      // in the same spot for its name, with '_x'.
2323
      $input = $form_state['input'];
2324
      foreach (explode('[', $form['#name']) as $element_name) {
2325
        // chop off the ] that may exist.
2326
        if (substr($element_name, -1) == ']') {
2327
          $element_name = substr($element_name, 0, -1);
2328
        }
2329

    
2330
        if (!isset($input[$element_name])) {
2331
          if (isset($input[$element_name . '_x'])) {
2332
            return $form['#return_value'];
2333
          }
2334
          return NULL;
2335
        }
2336
        $input = $input[$element_name];
2337
      }
2338
      return $form['#return_value'];
2339
    }
2340
  }
2341
}
2342

    
2343
/**
2344
 * Determines the value for a checkbox form element.
2345
 *
2346
 * @param $form
2347
 *   The form element whose value is being populated.
2348
 * @param $input
2349
 *   The incoming input to populate the form element. If this is FALSE,
2350
 *   the element's default value should be returned.
2351
 *
2352
 * @return
2353
 *   The data that will appear in the $element_state['values'] collection
2354
 *   for this element. Return nothing to use the default.
2355
 */
2356
function form_type_checkbox_value($element, $input = FALSE) {
2357
  if ($input === FALSE) {
2358
    // Use #default_value as the default value of a checkbox, except change
2359
    // NULL to 0, because _form_builder_handle_input_element() would otherwise
2360
    // replace NULL with empty string, but an empty string is a potentially
2361
    // valid value for a checked checkbox.
2362
    return isset($element['#default_value']) ? $element['#default_value'] : 0;
2363
  }
2364
  else {
2365
    // Checked checkboxes are submitted with a value (possibly '0' or ''):
2366
    // http://www.w3.org/TR/html401/interact/forms.html#successful-controls.
2367
    // For checked checkboxes, browsers submit the string version of
2368
    // #return_value, but we return the original #return_value. For unchecked
2369
    // checkboxes, browsers submit nothing at all, but
2370
    // _form_builder_handle_input_element() detects this, and calls this
2371
    // function with $input=NULL. Returning NULL from a value callback means to
2372
    // use the default value, which is not what is wanted when an unchecked
2373
    // checkbox is submitted, so we use integer 0 as the value indicating an
2374
    // unchecked checkbox. Therefore, modules must not use integer 0 as a
2375
    // #return_value, as doing so results in the checkbox always being treated
2376
    // as unchecked. The string '0' is allowed for #return_value. The most
2377
    // common use-case for setting #return_value to either 0 or '0' is for the
2378
    // first option within a 0-indexed array of checkboxes, and for this,
2379
    // form_process_checkboxes() uses the string rather than the integer.
2380
    return isset($input) ? $element['#return_value'] : 0;
2381
  }
2382
}
2383

    
2384
/**
2385
 * Determines the value for a checkboxes form element.
2386
 *
2387
 * @param $element
2388
 *   The form element whose value is being populated.
2389
 * @param $input
2390
 *   The incoming input to populate the form element. If this is FALSE,
2391
 *   the element's default value should be returned.
2392
 *
2393
 * @return
2394
 *   The data that will appear in the $element_state['values'] collection
2395
 *   for this element. Return nothing to use the default.
2396
 */
2397
function form_type_checkboxes_value($element, $input = FALSE) {
2398
  if ($input === FALSE) {
2399
    $value = array();
2400
    $element += array('#default_value' => array());
2401
    foreach ($element['#default_value'] as $key) {
2402
      $value[$key] = $key;
2403
    }
2404
    return $value;
2405
  }
2406
  elseif (is_array($input)) {
2407
    // Programmatic form submissions use NULL to indicate that a checkbox
2408
    // should be unchecked; see drupal_form_submit(). We therefore remove all
2409
    // NULL elements from the array before constructing the return value, to
2410
    // simulate the behavior of web browsers (which do not send unchecked
2411
    // checkboxes to the server at all). This will not affect non-programmatic
2412
    // form submissions, since all values in $_POST are strings.
2413
    foreach ($input as $key => $value) {
2414
      if (!isset($value)) {
2415
        unset($input[$key]);
2416
      }
2417
    }
2418
    return drupal_map_assoc($input);
2419
  }
2420
  else {
2421
    return array();
2422
  }
2423
}
2424

    
2425
/**
2426
 * Determines the value for a tableselect form element.
2427
 *
2428
 * @param $element
2429
 *   The form element whose value is being populated.
2430
 * @param $input
2431
 *   The incoming input to populate the form element. If this is FALSE,
2432
 *   the element's default value should be returned.
2433
 *
2434
 * @return
2435
 *   The data that will appear in the $element_state['values'] collection
2436
 *   for this element. Return nothing to use the default.
2437
 */
2438
function form_type_tableselect_value($element, $input = FALSE) {
2439
  // If $element['#multiple'] == FALSE, then radio buttons are displayed and
2440
  // the default value handling is used.
2441
  if (isset($element['#multiple']) && $element['#multiple']) {
2442
    // Checkboxes are being displayed with the default value coming from the
2443
    // keys of the #default_value property. This differs from the checkboxes
2444
    // element which uses the array values.
2445
    if ($input === FALSE) {
2446
      $value = array();
2447
      $element += array('#default_value' => array());
2448
      foreach ($element['#default_value'] as $key => $flag) {
2449
        if ($flag) {
2450
          $value[$key] = $key;
2451
        }
2452
      }
2453
      return $value;
2454
    }
2455
    else {
2456
      return is_array($input) ? drupal_map_assoc($input) : array();
2457
    }
2458
  }
2459
}
2460

    
2461
/**
2462
 * Form value callback: Determines the value for a #type radios form element.
2463
 *
2464
 * @param $element
2465
 *   The form element whose value is being populated.
2466
 * @param $input
2467
 *   (optional) The incoming input to populate the form element. If FALSE, the
2468
 *   element's default value is returned. Defaults to FALSE.
2469
 *
2470
 * @return
2471
 *   The data that will appear in the $element_state['values'] collection for
2472
 *   this element.
2473
 */
2474
function form_type_radios_value(&$element, $input = FALSE) {
2475
  if ($input !== FALSE) {
2476
    // When there's user input (including NULL), return it as the value.
2477
    // However, if NULL is submitted, _form_builder_handle_input_element() will
2478
    // apply the default value, and we want that validated against #options
2479
    // unless it's empty. (An empty #default_value, such as NULL or FALSE, can
2480
    // be used to indicate that no radio button is selected by default.)
2481
    if (!isset($input) && !empty($element['#default_value'])) {
2482
      $element['#needs_validation'] = TRUE;
2483
    }
2484
    return $input;
2485
  }
2486
  else {
2487
    // For default value handling, simply return #default_value. Additionally,
2488
    // for a NULL default value, set #has_garbage_value to prevent
2489
    // _form_builder_handle_input_element() converting the NULL to an empty
2490
    // string, so that code can distinguish between nothing selected and the
2491
    // selection of a radio button whose value is an empty string.
2492
    $value = isset($element['#default_value']) ? $element['#default_value'] : NULL;
2493
    if (!isset($value)) {
2494
      $element['#has_garbage_value'] = TRUE;
2495
    }
2496
    return $value;
2497
  }
2498
}
2499

    
2500
/**
2501
 * Determines the value for a password_confirm form element.
2502
 *
2503
 * @param $element
2504
 *   The form element whose value is being populated.
2505
 * @param $input
2506
 *   The incoming input to populate the form element. If this is FALSE,
2507
 *   the element's default value should be returned.
2508
 *
2509
 * @return
2510
 *   The data that will appear in the $element_state['values'] collection
2511
 *   for this element. Return nothing to use the default.
2512
 */
2513
function form_type_password_confirm_value($element, $input = FALSE) {
2514
  if ($input === FALSE) {
2515
    $element += array('#default_value' => array());
2516
    return $element['#default_value'] + array('pass1' => '', 'pass2' => '');
2517
  }
2518
  $value = array('pass1' => '', 'pass2' => '');
2519
  // Throw out all invalid array keys; we only allow pass1 and pass2.
2520
  foreach ($value as $allowed_key => $default) {
2521
    // These should be strings, but allow other scalars since they might be
2522
    // valid input in programmatic form submissions. Any nested array values
2523
    // are ignored.
2524
    if (isset($input[$allowed_key]) && is_scalar($input[$allowed_key])) {
2525
      $value[$allowed_key] = (string) $input[$allowed_key];
2526
    }
2527
  }
2528
  return $value;
2529
}
2530

    
2531
/**
2532
 * Determines the value for a select form element.
2533
 *
2534
 * @param $element
2535
 *   The form element whose value is being populated.
2536
 * @param $input
2537
 *   The incoming input to populate the form element. If this is FALSE,
2538
 *   the element's default value should be returned.
2539
 *
2540
 * @return
2541
 *   The data that will appear in the $element_state['values'] collection
2542
 *   for this element. Return nothing to use the default.
2543
 */
2544
function form_type_select_value($element, $input = FALSE) {
2545
  if ($input !== FALSE) {
2546
    if (isset($element['#multiple']) && $element['#multiple']) {
2547
      // If an enabled multi-select submits NULL, it means all items are
2548
      // unselected. A disabled multi-select always submits NULL, and the
2549
      // default value should be used.
2550
      if (empty($element['#disabled'])) {
2551
        return (is_array($input)) ? drupal_map_assoc($input) : array();
2552
      }
2553
      else {
2554
        return (isset($element['#default_value']) && is_array($element['#default_value'])) ? $element['#default_value'] : array();
2555
      }
2556
    }
2557
    // Non-multiple select elements may have an empty option preprended to them
2558
    // (see form_process_select()). When this occurs, usually #empty_value is
2559
    // an empty string, but some forms set #empty_value to integer 0 or some
2560
    // other non-string constant. PHP receives all submitted form input as
2561
    // strings, but if the empty option is selected, set the value to match the
2562
    // empty value exactly.
2563
    elseif (isset($element['#empty_value']) && $input === (string) $element['#empty_value']) {
2564
      return $element['#empty_value'];
2565
    }
2566
    else {
2567
      return $input;
2568
    }
2569
  }
2570
}
2571

    
2572
/**
2573
 * Determines the value for a textarea form element.
2574
 *
2575
 * @param array $element
2576
 *   The form element whose value is being populated.
2577
 * @param mixed $input
2578
 *   The incoming input to populate the form element. If this is FALSE,
2579
 *   the element's default value should be returned.
2580
 *
2581
 * @return string
2582
 *   The data that will appear in the $element_state['values'] collection
2583
 *   for this element. Return nothing to use the default.
2584
 */
2585
function form_type_textarea_value($element, $input = FALSE) {
2586
  if ($input !== FALSE && $input !== NULL) {
2587
    // This should be a string, but allow other scalars since they might be
2588
    // valid input in programmatic form submissions.
2589
    return is_scalar($input) ? (string) $input : '';
2590
  }
2591
}
2592

    
2593
/**
2594
 * Determines the value for a textfield form element.
2595
 *
2596
 * @param $element
2597
 *   The form element whose value is being populated.
2598
 * @param $input
2599
 *   The incoming input to populate the form element. If this is FALSE,
2600
 *   the element's default value should be returned.
2601
 *
2602
 * @return
2603
 *   The data that will appear in the $element_state['values'] collection
2604
 *   for this element. Return nothing to use the default.
2605
 */
2606
function form_type_textfield_value($element, $input = FALSE) {
2607
  if ($input !== FALSE && $input !== NULL) {
2608
    // This should be a string, but allow other scalars since they might be
2609
    // valid input in programmatic form submissions.
2610
    if (!is_scalar($input)) {
2611
      $input = '';
2612
    }
2613
    return str_replace(array("\r", "\n"), '', (string) $input);
2614
  }
2615
}
2616

    
2617
/**
2618
 * Determines the value for form's token value.
2619
 *
2620
 * @param $element
2621
 *   The form element whose value is being populated.
2622
 * @param $input
2623
 *   The incoming input to populate the form element. If this is FALSE,
2624
 *   the element's default value should be returned.
2625
 *
2626
 * @return
2627
 *   The data that will appear in the $element_state['values'] collection
2628
 *   for this element. Return nothing to use the default.
2629
 */
2630
function form_type_token_value($element, $input = FALSE) {
2631
  if ($input !== FALSE) {
2632
    return (string) $input;
2633
  }
2634
}
2635

    
2636
/**
2637
 * Changes submitted form values during form validation.
2638
 *
2639
 * Use this function to change the submitted value of a form element in a form
2640
 * validation function, so that the changed value persists in $form_state
2641
 * through the remaining validation and submission handlers. It does not change
2642
 * the value in $element['#value'], only in $form_state['values'], which is
2643
 * where submitted values are always stored.
2644
 *
2645
 * Note that form validation functions are specified in the '#validate'
2646
 * component of the form array (the value of $form['#validate'] is an array of
2647
 * validation function names). If the form does not originate in your module,
2648
 * you can implement hook_form_FORM_ID_alter() to add a validation function
2649
 * to $form['#validate'].
2650
 *
2651
 * @param $element
2652
 *   The form element that should have its value updated; in most cases you can
2653
 *   just pass in the element from the $form array, although the only component
2654
 *   that is actually used is '#parents'. If constructing yourself, set
2655
 *   $element['#parents'] to be an array giving the path through the form
2656
 *   array's keys to the element whose value you want to update. For instance,
2657
 *   if you want to update the value of $form['elem1']['elem2'], which should be
2658
 *   stored in $form_state['values']['elem1']['elem2'], you would set
2659
 *   $element['#parents'] = array('elem1','elem2').
2660
 * @param $value
2661
 *   The new value for the form element.
2662
 * @param $form_state
2663
 *   Form state array where the value change should be recorded.
2664
 */
2665
function form_set_value($element, $value, &$form_state) {
2666
  drupal_array_set_nested_value($form_state['values'], $element['#parents'], $value, TRUE);
2667
}
2668

    
2669
/**
2670
 * Allows PHP array processing of multiple select options with the same value.
2671
 *
2672
 * Used for form select elements which need to validate HTML option groups
2673
 * and multiple options which may return the same value. Associative PHP arrays
2674
 * cannot handle these structures, since they share a common key.
2675
 *
2676
 * @param $array
2677
 *   The form options array to process.
2678
 *
2679
 * @return
2680
 *   An array with all hierarchical elements flattened to a single array.
2681
 */
2682
function form_options_flatten($array) {
2683
  // Always reset static var when first entering the recursion.
2684
  drupal_static_reset('_form_options_flatten');
2685
  return _form_options_flatten($array);
2686
}
2687

    
2688
/**
2689
 * Iterates over an array and returns a flat array with duplicate keys removed.
2690
 *
2691
 * This function also handles cases where objects are passed as array values.
2692
 */
2693
function _form_options_flatten($array) {
2694
  $return = &drupal_static(__FUNCTION__);
2695

    
2696
  foreach ($array as $key => $value) {
2697
    if (is_object($value)) {
2698
      _form_options_flatten($value->option);
2699
    }
2700
    elseif (is_array($value)) {
2701
      _form_options_flatten($value);
2702
    }
2703
    else {
2704
      $return[$key] = 1;
2705
    }
2706
  }
2707

    
2708
  return $return;
2709
}
2710

    
2711
/**
2712
 * Processes a select list form element.
2713
 *
2714
 * This process callback is mandatory for select fields, since all user agents
2715
 * automatically preselect the first available option of single (non-multiple)
2716
 * select lists.
2717
 *
2718
 * @param $element
2719
 *   The form element to process. Properties used:
2720
 *   - #multiple: (optional) Indicates whether one or more options can be
2721
 *     selected. Defaults to FALSE.
2722
 *   - #default_value: Must be NULL or not set in case there is no value for the
2723
 *     element yet, in which case a first default option is inserted by default.
2724
 *     Whether this first option is a valid option depends on whether the field
2725
 *     is #required or not.
2726
 *   - #required: (optional) Whether the user needs to select an option (TRUE)
2727
 *     or not (FALSE). Defaults to FALSE.
2728
 *   - #empty_option: (optional) The label to show for the first default option.
2729
 *     By default, the label is automatically set to "- Select -" for a required
2730
 *     field and "- None -" for an optional field.
2731
 *   - #empty_value: (optional) The value for the first default option, which is
2732
 *     used to determine whether the user submitted a value or not.
2733
 *     - If #required is TRUE, this defaults to '' (an empty string).
2734
 *     - If #required is not TRUE and this value isn't set, then no extra option
2735
 *       is added to the select control, leaving the control in a slightly
2736
 *       illogical state, because there's no way for the user to select nothing,
2737
 *       since all user agents automatically preselect the first available
2738
 *       option. But people are used to this being the behavior of select
2739
 *       controls.
2740
 *       @todo Address the above issue in Drupal 8.
2741
 *     - If #required is not TRUE and this value is set (most commonly to an
2742
 *       empty string), then an extra option (see #empty_option above)
2743
 *       representing a "non-selection" is added with this as its value.
2744
 *
2745
 * @see _form_validate()
2746
 */
2747
function form_process_select($element) {
2748
  // #multiple select fields need a special #name.
2749
  if ($element['#multiple']) {
2750
    $element['#attributes']['multiple'] = 'multiple';
2751
    $element['#attributes']['name'] = $element['#name'] . '[]';
2752
  }
2753
  // A non-#multiple select needs special handling to prevent user agents from
2754
  // preselecting the first option without intention. #multiple select lists do
2755
  // not get an empty option, as it would not make sense, user interface-wise.
2756
  else {
2757
    $required = $element['#required'];
2758
    // If the element is required and there is no #default_value, then add an
2759
    // empty option that will fail validation, so that the user is required to
2760
    // make a choice. Also, if there's a value for #empty_value or
2761
    // #empty_option, then add an option that represents emptiness.
2762
    if (($required && !isset($element['#default_value'])) || isset($element['#empty_value']) || isset($element['#empty_option'])) {
2763
      $element += array(
2764
        '#empty_value' => '',
2765
        '#empty_option' => $required ? t('- Select -') : t('- None -'),
2766
      );
2767
      // The empty option is prepended to #options and purposively not merged
2768
      // to prevent another option in #options mistakenly using the same value
2769
      // as #empty_value.
2770
      $empty_option = array($element['#empty_value'] => $element['#empty_option']);
2771
      $element['#options'] = $empty_option + $element['#options'];
2772
    }
2773
  }
2774
  return $element;
2775
}
2776

    
2777
/**
2778
 * Returns HTML for a select form element.
2779
 *
2780
 * It is possible to group options together; to do this, change the format of
2781
 * $options to an associative array in which the keys are group labels, and the
2782
 * values are associative arrays in the normal $options format.
2783
 *
2784
 * @param $variables
2785
 *   An associative array containing:
2786
 *   - element: An associative array containing the properties of the element.
2787
 *     Properties used: #title, #value, #options, #description, #extra,
2788
 *     #multiple, #required, #name, #attributes, #size.
2789
 *
2790
 * @ingroup themeable
2791
 */
2792
function theme_select($variables) {
2793
  $element = $variables['element'];
2794
  element_set_attributes($element, array('id', 'name', 'size'));
2795
  _form_set_class($element, array('form-select'));
2796

    
2797
  return '<select' . drupal_attributes($element['#attributes']) . '>' . form_select_options($element) . '</select>';
2798
}
2799

    
2800
/**
2801
 * Converts an array of options into HTML, for use in select list form elements.
2802
 *
2803
 * This function calls itself recursively to obtain the values for each optgroup
2804
 * within the list of options and when the function encounters an object with
2805
 * an 'options' property inside $element['#options'].
2806
 *
2807
 * @param array $element
2808
 *   An associative array containing the following key-value pairs:
2809
 *   - #multiple: Optional Boolean indicating if the user may select more than
2810
 *     one item.
2811
 *   - #options: An associative array of options to render as HTML. Each array
2812
 *     value can be a string, an array, or an object with an 'option' property:
2813
 *     - A string or integer key whose value is a translated string is
2814
 *       interpreted as a single HTML option element. Do not use placeholders
2815
 *       that sanitize data: doing so will lead to double-escaping. Note that
2816
 *       the key will be visible in the HTML and could be modified by malicious
2817
 *       users, so don't put sensitive information in it.
2818
 *     - A translated string key whose value is an array indicates a group of
2819
 *       options. The translated string is used as the label attribute for the
2820
 *       optgroup. Do not use placeholders to sanitize data: doing so will lead
2821
 *       to double-escaping. The array should contain the options you wish to
2822
 *       group and should follow the syntax of $element['#options'].
2823
 *     - If the function encounters a string or integer key whose value is an
2824
 *       object with an 'option' property, the key is ignored, the contents of
2825
 *       the option property are interpreted as $element['#options'], and the
2826
 *       resulting HTML is added to the output.
2827
 *   - #value: Optional integer, string, or array representing which option(s)
2828
 *     to pre-select when the list is first displayed. The integer or string
2829
 *     must match the key of an option in the '#options' list. If '#multiple' is
2830
 *     TRUE, this can be an array of integers or strings.
2831
 * @param array|null $choices
2832
 *   (optional) Either an associative array of options in the same format as
2833
 *   $element['#options'] above, or NULL. This parameter is only used internally
2834
 *   and is not intended to be passed in to the initial function call.
2835
 *
2836
 * @return string
2837
 *   An HTML string of options and optgroups for use in a select form element.
2838
 */
2839
function form_select_options($element, $choices = NULL) {
2840
  if (!isset($choices)) {
2841
    $choices = $element['#options'];
2842
  }
2843
  // array_key_exists() accommodates the rare event where $element['#value'] is NULL.
2844
  // isset() fails in this situation.
2845
  $value_valid = isset($element['#value']) || array_key_exists('#value', $element);
2846
  $value_is_array = $value_valid && is_array($element['#value']);
2847
  $options = '';
2848
  foreach ($choices as $key => $choice) {
2849
    if (is_array($choice)) {
2850
      $options .= '<optgroup label="' . check_plain($key) . '">';
2851
      $options .= form_select_options($element, $choice);
2852
      $options .= '</optgroup>';
2853
    }
2854
    elseif (is_object($choice)) {
2855
      $options .= form_select_options($element, $choice->option);
2856
    }
2857
    else {
2858
      $key = (string) $key;
2859
      if ($value_valid && (!$value_is_array && (string) $element['#value'] === $key || ($value_is_array && in_array($key, $element['#value'])))) {
2860
        $selected = ' selected="selected"';
2861
      }
2862
      else {
2863
        $selected = '';
2864
      }
2865
      $options .= '<option value="' . check_plain($key) . '"' . $selected . '>' . check_plain($choice) . '</option>';
2866
    }
2867
  }
2868
  return $options;
2869
}
2870

    
2871
/**
2872
 * Returns the indexes of a select element's options matching a given key.
2873
 *
2874
 * This function is useful if you need to modify the options that are
2875
 * already in a form element; for example, to remove choices which are
2876
 * not valid because of additional filters imposed by another module.
2877
 * One example might be altering the choices in a taxonomy selector.
2878
 * To correctly handle the case of a multiple hierarchy taxonomy,
2879
 * #options arrays can now hold an array of objects, instead of a
2880
 * direct mapping of keys to labels, so that multiple choices in the
2881
 * selector can have the same key (and label). This makes it difficult
2882
 * to manipulate directly, which is why this helper function exists.
2883
 *
2884
 * This function does not support optgroups (when the elements of the
2885
 * #options array are themselves arrays), and will return FALSE if
2886
 * arrays are found. The caller must either flatten/restore or
2887
 * manually do their manipulations in this case, since returning the
2888
 * index is not sufficient, and supporting this would make the
2889
 * "helper" too complicated and cumbersome to be of any help.
2890
 *
2891
 * As usual with functions that can return array() or FALSE, do not
2892
 * forget to use === and !== if needed.
2893
 *
2894
 * @param $element
2895
 *   The select element to search.
2896
 * @param $key
2897
 *   The key to look for.
2898
 *
2899
 * @return
2900
 *   An array of indexes that match the given $key. Array will be
2901
 *   empty if no elements were found. FALSE if optgroups were found.
2902
 */
2903
function form_get_options($element, $key) {
2904
  $keys = array();
2905
  foreach ($element['#options'] as $index => $choice) {
2906
    if (is_array($choice)) {
2907
      return FALSE;
2908
    }
2909
    elseif (is_object($choice)) {
2910
      if (isset($choice->option[$key])) {
2911
        $keys[] = $index;
2912
      }
2913
    }
2914
    elseif ($index == $key) {
2915
      $keys[] = $index;
2916
    }
2917
  }
2918
  return $keys;
2919
}
2920

    
2921
/**
2922
 * Returns HTML for a fieldset form element and its children.
2923
 *
2924
 * @param $variables
2925
 *   An associative array containing:
2926
 *   - element: An associative array containing the properties of the element.
2927
 *     Properties used: #attributes, #children, #collapsed, #collapsible,
2928
 *     #description, #id, #title, #value.
2929
 *
2930
 * @ingroup themeable
2931
 */
2932
function theme_fieldset($variables) {
2933
  $element = $variables['element'];
2934
  element_set_attributes($element, array('id'));
2935
  _form_set_class($element, array('form-wrapper'));
2936

    
2937
  $output = '<fieldset' . drupal_attributes($element['#attributes']) . '>';
2938
  if (!empty($element['#title'])) {
2939
    // Always wrap fieldset legends in a SPAN for CSS positioning.
2940
    $output .= '<legend><span class="fieldset-legend">' . $element['#title'] . '</span></legend>';
2941
  }
2942
  $output .= '<div class="fieldset-wrapper">';
2943
  if (!empty($element['#description'])) {
2944
    $output .= '<div class="fieldset-description">' . $element['#description'] . '</div>';
2945
  }
2946
  $output .= $element['#children'];
2947
  if (isset($element['#value'])) {
2948
    $output .= $element['#value'];
2949
  }
2950
  $output .= '</div>';
2951
  $output .= "</fieldset>\n";
2952
  return $output;
2953
}
2954

    
2955
/**
2956
 * Returns HTML for a radio button form element.
2957
 *
2958
 * Note: The input "name" attribute needs to be sanitized before output, which
2959
 *       is currently done by passing all attributes to drupal_attributes().
2960
 *
2961
 * @param $variables
2962
 *   An associative array containing:
2963
 *   - element: An associative array containing the properties of the element.
2964
 *     Properties used: #required, #return_value, #value, #attributes, #title,
2965
 *     #description
2966
 *
2967
 * @ingroup themeable
2968
 */
2969
function theme_radio($variables) {
2970
  $element = $variables['element'];
2971
  $element['#attributes']['type'] = 'radio';
2972
  element_set_attributes($element, array('id', 'name', '#return_value' => 'value'));
2973

    
2974
  if (isset($element['#return_value']) && $element['#value'] !== FALSE && $element['#value'] == $element['#return_value']) {
2975
    $element['#attributes']['checked'] = 'checked';
2976
  }
2977
  _form_set_class($element, array('form-radio'));
2978

    
2979
  return '<input' . drupal_attributes($element['#attributes']) . ' />';
2980
}
2981

    
2982
/**
2983
 * Returns HTML for a set of radio button form elements.
2984
 *
2985
 * @param $variables
2986
 *   An associative array containing:
2987
 *   - element: An associative array containing the properties of the element.
2988
 *     Properties used: #title, #value, #options, #description, #required,
2989
 *     #attributes, #children.
2990
 *
2991
 * @ingroup themeable
2992
 */
2993
function theme_radios($variables) {
2994
  $element = $variables['element'];
2995
  $attributes = array();
2996
  if (isset($element['#id'])) {
2997
    $attributes['id'] = $element['#id'];
2998
  }
2999
  $attributes['class'] = 'form-radios';
3000
  if (!empty($element['#attributes']['class'])) {
3001
    $attributes['class'] .= ' ' . implode(' ', $element['#attributes']['class']);
3002
  }
3003
  if (isset($element['#attributes']['title'])) {
3004
    $attributes['title'] = $element['#attributes']['title'];
3005
  }
3006
  return '<div' . drupal_attributes($attributes) . '>' . (!empty($element['#children']) ? $element['#children'] : '') . '</div>';
3007
}
3008

    
3009
/**
3010
 * Expand a password_confirm field into two text boxes.
3011
 */
3012
function form_process_password_confirm($element) {
3013
  $element['pass1'] =  array(
3014
    '#type' => 'password',
3015
    '#title' => t('Password'),
3016
    '#value' => empty($element['#value']) ? NULL : $element['#value']['pass1'],
3017
    '#required' => $element['#required'],
3018
    '#attributes' => array('class' => array('password-field')),
3019
  );
3020
  $element['pass2'] =  array(
3021
    '#type' => 'password',
3022
    '#title' => t('Confirm password'),
3023
    '#value' => empty($element['#value']) ? NULL : $element['#value']['pass2'],
3024
    '#required' => $element['#required'],
3025
    '#attributes' => array('class' => array('password-confirm')),
3026
  );
3027
  $element['#element_validate'] = array('password_confirm_validate');
3028
  $element['#tree'] = TRUE;
3029

    
3030
  if (isset($element['#size'])) {
3031
    $element['pass1']['#size'] = $element['pass2']['#size'] = $element['#size'];
3032
  }
3033

    
3034
  return $element;
3035
}
3036

    
3037
/**
3038
 * Validates a password_confirm element.
3039
 */
3040
function password_confirm_validate($element, &$element_state) {
3041
  $pass1 = trim($element['pass1']['#value']);
3042
  $pass2 = trim($element['pass2']['#value']);
3043
  if (strlen($pass1) > 0 || strlen($pass2) > 0) {
3044
    if (strcmp($pass1, $pass2)) {
3045
      form_error($element, t('The specified passwords do not match.'));
3046
    }
3047
  }
3048
  elseif ($element['#required'] && !empty($element_state['input'])) {
3049
    form_error($element, t('Password field is required.'));
3050
  }
3051

    
3052
  // Password field must be converted from a two-element array into a single
3053
  // string regardless of validation results.
3054
  form_set_value($element['pass1'], NULL, $element_state);
3055
  form_set_value($element['pass2'], NULL, $element_state);
3056
  form_set_value($element, $pass1, $element_state);
3057

    
3058
  return $element;
3059

    
3060
}
3061

    
3062
/**
3063
 * Returns HTML for a date selection form element.
3064
 *
3065
 * @param $variables
3066
 *   An associative array containing:
3067
 *   - element: An associative array containing the properties of the element.
3068
 *     Properties used: #title, #value, #options, #description, #required,
3069
 *     #attributes.
3070
 *
3071
 * @ingroup themeable
3072
 */
3073
function theme_date($variables) {
3074
  $element = $variables['element'];
3075

    
3076
  $attributes = array();
3077
  if (isset($element['#id'])) {
3078
    $attributes['id'] = $element['#id'];
3079
  }
3080
  if (!empty($element['#attributes']['class'])) {
3081
    $attributes['class'] = (array) $element['#attributes']['class'];
3082
  }
3083
  $attributes['class'][] = 'container-inline';
3084

    
3085
  return '<div' . drupal_attributes($attributes) . '>' . drupal_render_children($element) . '</div>';
3086
}
3087

    
3088
/**
3089
 * Expands a date element into year, month, and day select elements.
3090
 */
3091
function form_process_date($element) {
3092
  // Default to current date
3093
  if (empty($element['#value'])) {
3094
    $element['#value'] = array(
3095
      'day' => format_date(REQUEST_TIME, 'custom', 'j'),
3096
      'month' => format_date(REQUEST_TIME, 'custom', 'n'),
3097
      'year' => format_date(REQUEST_TIME, 'custom', 'Y'),
3098
    );
3099
  }
3100

    
3101
  $element['#tree'] = TRUE;
3102

    
3103
  // Determine the order of day, month, year in the site's chosen date format.
3104
  $format = variable_get('date_format_short', 'm/d/Y - H:i');
3105
  $sort = array();
3106
  $sort['day'] = max(strpos($format, 'd'), strpos($format, 'j'));
3107
  $sort['month'] = max(strpos($format, 'm'), strpos($format, 'M'));
3108
  $sort['year'] = strpos($format, 'Y');
3109
  asort($sort);
3110
  $order = array_keys($sort);
3111

    
3112
  // Output multi-selector for date.
3113
  foreach ($order as $type) {
3114
    switch ($type) {
3115
      case 'day':
3116
        $options = drupal_map_assoc(range(1, 31));
3117
        $title = t('Day');
3118
        break;
3119

    
3120
      case 'month':
3121
        $options = drupal_map_assoc(range(1, 12), 'map_month');
3122
        $title = t('Month');
3123
        break;
3124

    
3125
      case 'year':
3126
        $options = drupal_map_assoc(range(1900, 2050));
3127
        $title = t('Year');
3128
        break;
3129
    }
3130

    
3131
    $element[$type] = array(
3132
      '#type' => 'select',
3133
      '#title' => $title,
3134
      '#title_display' => 'invisible',
3135
      '#value' => $element['#value'][$type],
3136
      '#attributes' => $element['#attributes'],
3137
      '#options' => $options,
3138
    );
3139
  }
3140

    
3141
  return $element;
3142
}
3143

    
3144
/**
3145
 * Validates the date type to prevent invalid dates (e.g., February 30, 2006).
3146
 */
3147
function date_validate($element) {
3148
  if (!checkdate($element['#value']['month'], $element['#value']['day'], $element['#value']['year'])) {
3149
    form_error($element, t('The specified date is invalid.'));
3150
  }
3151
}
3152

    
3153
/**
3154
 * Helper function for usage with drupal_map_assoc to display month names.
3155
 */
3156
function map_month($month) {
3157
  $months = &drupal_static(__FUNCTION__, array(
3158
    1 => 'Jan',
3159
    2 => 'Feb',
3160
    3 => 'Mar',
3161
    4 => 'Apr',
3162
    5 => 'May',
3163
    6 => 'Jun',
3164
    7 => 'Jul',
3165
    8 => 'Aug',
3166
    9 => 'Sep',
3167
    10 => 'Oct',
3168
    11 => 'Nov',
3169
    12 => 'Dec',
3170
  ));
3171
  return t($months[$month]);
3172
}
3173

    
3174
/**
3175
 * Sets the value for a weight element, with zero as a default.
3176
 */
3177
function weight_value(&$form) {
3178
  if (isset($form['#default_value'])) {
3179
    $form['#value'] = $form['#default_value'];
3180
  }
3181
  else {
3182
    $form['#value'] = 0;
3183
  }
3184
}
3185

    
3186
/**
3187
 * Expands a radios element into individual radio elements.
3188
 */
3189
function form_process_radios($element) {
3190
  if (count($element['#options']) > 0) {
3191
    $weight = 0;
3192
    foreach ($element['#options'] as $key => $choice) {
3193
      // Maintain order of options as defined in #options, in case the element
3194
      // defines custom option sub-elements, but does not define all option
3195
      // sub-elements.
3196
      $weight += 0.001;
3197

    
3198
      $element += array($key => array());
3199
      // Generate the parents as the autogenerator does, so we will have a
3200
      // unique id for each radio button.
3201
      $parents_for_id = array_merge($element['#parents'], array($key));
3202
      $element[$key] += array(
3203
        '#type' => 'radio',
3204
        '#title' => $choice,
3205
        // The key is sanitized in drupal_attributes() during output from the
3206
        // theme function.
3207
        '#return_value' => $key,
3208
        // Use default or FALSE. A value of FALSE means that the radio button is
3209
        // not 'checked'.
3210
        '#default_value' => isset($element['#default_value']) ? $element['#default_value'] : FALSE,
3211
        '#attributes' => $element['#attributes'],
3212
        '#parents' => $element['#parents'],
3213
        '#id' => drupal_html_id('edit-' . implode('-', $parents_for_id)),
3214
        '#ajax' => isset($element['#ajax']) ? $element['#ajax'] : NULL,
3215
        '#weight' => $weight,
3216
      );
3217
    }
3218
  }
3219
  return $element;
3220
}
3221

    
3222
/**
3223
 * Returns HTML for a checkbox form element.
3224
 *
3225
 * @param $variables
3226
 *   An associative array containing:
3227
 *   - element: An associative array containing the properties of the element.
3228
 *     Properties used: #id, #name, #attributes, #checked, #return_value.
3229
 *
3230
 * @ingroup themeable
3231
 */
3232
function theme_checkbox($variables) {
3233
  $element = $variables['element'];
3234
  $element['#attributes']['type'] = 'checkbox';
3235
  element_set_attributes($element, array('id', 'name', '#return_value' => 'value'));
3236

    
3237
  // Unchecked checkbox has #value of integer 0.
3238
  if (!empty($element['#checked'])) {
3239
    $element['#attributes']['checked'] = 'checked';
3240
  }
3241
  _form_set_class($element, array('form-checkbox'));
3242

    
3243
  return '<input' . drupal_attributes($element['#attributes']) . ' />';
3244
}
3245

    
3246
/**
3247
 * Returns HTML for a set of checkbox form elements.
3248
 *
3249
 * @param $variables
3250
 *   An associative array containing:
3251
 *   - element: An associative array containing the properties of the element.
3252
 *     Properties used: #children, #attributes.
3253
 *
3254
 * @ingroup themeable
3255
 */
3256
function theme_checkboxes($variables) {
3257
  $element = $variables['element'];
3258
  $attributes = array();
3259
  if (isset($element['#id'])) {
3260
    $attributes['id'] = $element['#id'];
3261
  }
3262
  $attributes['class'][] = 'form-checkboxes';
3263
  if (!empty($element['#attributes']['class'])) {
3264
    $attributes['class'] = array_merge($attributes['class'], $element['#attributes']['class']);
3265
  }
3266
  if (isset($element['#attributes']['title'])) {
3267
    $attributes['title'] = $element['#attributes']['title'];
3268
  }
3269
  return '<div' . drupal_attributes($attributes) . '>' . (!empty($element['#children']) ? $element['#children'] : '') . '</div>';
3270
}
3271

    
3272
/**
3273
 * Adds form element theming to an element if its title or description is set.
3274
 *
3275
 * This is used as a pre render function for checkboxes and radios.
3276
 */
3277
function form_pre_render_conditional_form_element($element) {
3278
  $t = get_t();
3279
  // Set the element's title attribute to show #title as a tooltip, if needed.
3280
  if (isset($element['#title']) && $element['#title_display'] == 'attribute') {
3281
    $element['#attributes']['title'] = $element['#title'];
3282
    if (!empty($element['#required'])) {
3283
      // Append an indication that this field is required.
3284
      $element['#attributes']['title'] .= ' (' . $t('Required') . ')';
3285
    }
3286
  }
3287

    
3288
  if (isset($element['#title']) || isset($element['#description'])) {
3289
    $element['#theme_wrappers'][] = 'form_element';
3290
  }
3291
  return $element;
3292
}
3293

    
3294
/**
3295
 * Sets the #checked property of a checkbox element.
3296
 */
3297
function form_process_checkbox($element, $form_state) {
3298
  $value = $element['#value'];
3299
  $return_value = $element['#return_value'];
3300
  // On form submission, the #value of an available and enabled checked
3301
  // checkbox is #return_value, and the #value of an available and enabled
3302
  // unchecked checkbox is integer 0. On not submitted forms, and for
3303
  // checkboxes with #access=FALSE or #disabled=TRUE, the #value is
3304
  // #default_value (integer 0 if #default_value is NULL). Most of the time,
3305
  // a string comparison of #value and #return_value is sufficient for
3306
  // determining the "checked" state, but a value of TRUE always means checked
3307
  // (even if #return_value is 'foo'), and a value of FALSE or integer 0 always
3308
  // means unchecked (even if #return_value is '' or '0').
3309
  if ($value === TRUE || $value === FALSE || $value === 0) {
3310
    $element['#checked'] = (bool) $value;
3311
  }
3312
  else {
3313
    // Compare as strings, so that 15 is not considered equal to '15foo', but 1
3314
    // is considered equal to '1'. This cast does not imply that either #value
3315
    // or #return_value is expected to be a string.
3316
    $element['#checked'] = ((string) $value === (string) $return_value);
3317
  }
3318
  return $element;
3319
}
3320

    
3321
/**
3322
 * Processes a checkboxes form element.
3323
 */
3324
function form_process_checkboxes($element) {
3325
  $value = is_array($element['#value']) ? $element['#value'] : array();
3326
  $element['#tree'] = TRUE;
3327
  if (count($element['#options']) > 0) {
3328
    if (!isset($element['#default_value']) || $element['#default_value'] == 0) {
3329
      $element['#default_value'] = array();
3330
    }
3331
    $weight = 0;
3332
    foreach ($element['#options'] as $key => $choice) {
3333
      // Integer 0 is not a valid #return_value, so use '0' instead.
3334
      // @see form_type_checkbox_value().
3335
      // @todo For Drupal 8, cast all integer keys to strings for consistency
3336
      //   with form_process_radios().
3337
      if ($key === 0) {
3338
        $key = '0';
3339
      }
3340
      // Maintain order of options as defined in #options, in case the element
3341
      // defines custom option sub-elements, but does not define all option
3342
      // sub-elements.
3343
      $weight += 0.001;
3344

    
3345
      $element += array($key => array());
3346
      $element[$key] += array(
3347
        '#type' => 'checkbox',
3348
        '#title' => $choice,
3349
        '#return_value' => $key,
3350
        '#default_value' => isset($value[$key]) ? $key : NULL,
3351
        '#attributes' => $element['#attributes'],
3352
        '#ajax' => isset($element['#ajax']) ? $element['#ajax'] : NULL,
3353
        '#weight' => $weight,
3354
      );
3355
    }
3356
  }
3357
  return $element;
3358
}
3359

    
3360
/**
3361
 * Processes a form actions container element.
3362
 *
3363
 * @param $element
3364
 *   An associative array containing the properties and children of the
3365
 *   form actions container.
3366
 * @param $form_state
3367
 *   The $form_state array for the form this element belongs to.
3368
 *
3369
 * @return
3370
 *   The processed element.
3371
 */
3372
function form_process_actions($element, &$form_state) {
3373
  $element['#attributes']['class'][] = 'form-actions';
3374
  return $element;
3375
}
3376

    
3377
/**
3378
 * Processes a container element.
3379
 *
3380
 * @param $element
3381
 *   An associative array containing the properties and children of the
3382
 *   container.
3383
 * @param $form_state
3384
 *   The $form_state array for the form this element belongs to.
3385
 *
3386
 * @return
3387
 *   The processed element.
3388
 */
3389
function form_process_container($element, &$form_state) {
3390
  // Generate the ID of the element if it's not explicitly given.
3391
  if (!isset($element['#id'])) {
3392
    $element['#id'] = drupal_html_id(implode('-', $element['#parents']) . '-wrapper');
3393
  }
3394
  return $element;
3395
}
3396

    
3397
/**
3398
 * Returns HTML to wrap child elements in a container.
3399
 *
3400
 * Used for grouped form items. Can also be used as a theme wrapper for any
3401
 * renderable element, to surround it with a <div> and add attributes such as
3402
 * classes or an HTML ID.
3403
 *
3404
 * See the @link forms_api_reference.html Form API reference @endlink for more
3405
 * information on the #theme_wrappers render array property.
3406
 *
3407
 * @param $variables
3408
 *   An associative array containing:
3409
 *   - element: An associative array containing the properties of the element.
3410
 *     Properties used: #id, #attributes, #children.
3411
 *
3412
 * @ingroup themeable
3413
 */
3414
function theme_container($variables) {
3415
  $element = $variables['element'];
3416
  // Ensure #attributes is set.
3417
  $element += array('#attributes' => array());
3418

    
3419
  // Special handling for form elements.
3420
  if (isset($element['#array_parents'])) {
3421
    // Assign an html ID.
3422
    if (!isset($element['#attributes']['id'])) {
3423
      $element['#attributes']['id'] = $element['#id'];
3424
    }
3425
    // Add the 'form-wrapper' class.
3426
    $element['#attributes']['class'][] = 'form-wrapper';
3427
  }
3428

    
3429
  return '<div' . drupal_attributes($element['#attributes']) . '>' . $element['#children'] . '</div>';
3430
}
3431

    
3432
/**
3433
 * Returns HTML for a table with radio buttons or checkboxes.
3434
 *
3435
 * @param $variables
3436
 *   An associative array containing:
3437
 *   - element: An associative array containing the properties and children of
3438
 *     the tableselect element. Properties used: #header, #options, #empty,
3439
 *     and #js_select. The #options property is an array of selection options;
3440
 *     each array element of #options is an array of properties. These
3441
 *     properties can include #attributes, which is added to the
3442
 *     table row's HTML attributes; see theme_table(). An example of per-row
3443
 *     options:
3444
 *     @code
3445
 *     $options = array(
3446
 *       array(
3447
 *         'title' => 'How to Learn Drupal',
3448
 *         'content_type' => 'Article',
3449
 *         'status' => 'published',
3450
 *         '#attributes' => array('class' => array('article-row')),
3451
 *       ),
3452
 *       array(
3453
 *         'title' => 'Privacy Policy',
3454
 *         'content_type' => 'Page',
3455
 *         'status' => 'published',
3456
 *         '#attributes' => array('class' => array('page-row')),
3457
 *       ),
3458
 *     );
3459
 *     $header = array(
3460
 *       'title' => t('Title'),
3461
 *       'content_type' => t('Content type'),
3462
 *       'status' => t('Status'),
3463
 *     );
3464
 *     $form['table'] = array(
3465
 *       '#type' => 'tableselect',
3466
 *       '#header' => $header,
3467
 *       '#options' => $options,
3468
 *       '#empty' => t('No content available.'),
3469
 *     );
3470
 *     @endcode
3471
 *
3472
 * @ingroup themeable
3473
 */
3474
function theme_tableselect($variables) {
3475
  $element = $variables['element'];
3476
  $rows = array();
3477
  $header = $element['#header'];
3478
  if (!empty($element['#options'])) {
3479
    // Generate a table row for each selectable item in #options.
3480
    foreach (element_children($element) as $key) {
3481
      $row = array();
3482

    
3483
      $row['data'] = array();
3484
      if (isset($element['#options'][$key]['#attributes'])) {
3485
        $row += $element['#options'][$key]['#attributes'];
3486
      }
3487
      // Render the checkbox / radio element.
3488
      $row['data'][] = drupal_render($element[$key]);
3489

    
3490
      // As theme_table only maps header and row columns by order, create the
3491
      // correct order by iterating over the header fields.
3492
      foreach ($element['#header'] as $fieldname => $title) {
3493
        $row['data'][] = $element['#options'][$key][$fieldname];
3494
      }
3495
      $rows[] = $row;
3496
    }
3497
    // Add an empty header or a "Select all" checkbox to provide room for the
3498
    // checkboxes/radios in the first table column.
3499
    if ($element['#js_select']) {
3500
      // Add a "Select all" checkbox.
3501
      drupal_add_js('misc/tableselect.js');
3502
      array_unshift($header, array('class' => array('select-all')));
3503
    }
3504
    else {
3505
      // Add an empty header when radio buttons are displayed or a "Select all"
3506
      // checkbox is not desired.
3507
      array_unshift($header, '');
3508
    }
3509
  }
3510
  return theme('table', array('header' => $header, 'rows' => $rows, 'empty' => $element['#empty'], 'attributes' => $element['#attributes']));
3511
}
3512

    
3513
/**
3514
 * Creates checkbox or radio elements to populate a tableselect table.
3515
 *
3516
 * @param $element
3517
 *   An associative array containing the properties and children of the
3518
 *   tableselect element.
3519
 *
3520
 * @return
3521
 *   The processed element.
3522
 */
3523
function form_process_tableselect($element) {
3524

    
3525
  if ($element['#multiple']) {
3526
    $value = is_array($element['#value']) ? $element['#value'] : array();
3527
  }
3528
  else {
3529
    // Advanced selection behavior makes no sense for radios.
3530
    $element['#js_select'] = FALSE;
3531
  }
3532

    
3533
  $element['#tree'] = TRUE;
3534

    
3535
  if (count($element['#options']) > 0) {
3536
    if (!isset($element['#default_value']) || $element['#default_value'] === 0) {
3537
      $element['#default_value'] = array();
3538
    }
3539

    
3540
    // Create a checkbox or radio for each item in #options in such a way that
3541
    // the value of the tableselect element behaves as if it had been of type
3542
    // checkboxes or radios.
3543
    foreach ($element['#options'] as $key => $choice) {
3544
      // Do not overwrite manually created children.
3545
      if (!isset($element[$key])) {
3546
        if ($element['#multiple']) {
3547
          $title = '';
3548
          if (!empty($element['#options'][$key]['title']['data']['#title'])) {
3549
            $title = t('Update @title', array(
3550
              '@title' => $element['#options'][$key]['title']['data']['#title'],
3551
            ));
3552
          }
3553
          $element[$key] = array(
3554
            '#type' => 'checkbox',
3555
            '#title' => $title,
3556
            '#title_display' => 'invisible',
3557
            '#return_value' => $key,
3558
            '#default_value' => isset($value[$key]) ? $key : NULL,
3559
            '#attributes' => $element['#attributes'],
3560
            '#ajax' => isset($element['#ajax']) ? $element['#ajax'] : NULL,
3561
          );
3562
        }
3563
        else {
3564
          // Generate the parents as the autogenerator does, so we will have a
3565
          // unique id for each radio button.
3566
          $parents_for_id = array_merge($element['#parents'], array($key));
3567
          $element[$key] = array(
3568
            '#type' => 'radio',
3569
            '#title' => '',
3570
            '#return_value' => $key,
3571
            '#default_value' => ($element['#default_value'] == $key) ? $key : NULL,
3572
            '#attributes' => $element['#attributes'],
3573
            '#parents' => $element['#parents'],
3574
            '#id' => drupal_html_id('edit-' . implode('-', $parents_for_id)),
3575
            '#ajax' => isset($element['#ajax']) ? $element['#ajax'] : NULL,
3576
          );
3577
        }
3578
        if (isset($element['#options'][$key]['#weight'])) {
3579
          $element[$key]['#weight'] = $element['#options'][$key]['#weight'];
3580
        }
3581
      }
3582
    }
3583
  }
3584
  else {
3585
    $element['#value'] = array();
3586
  }
3587
  return $element;
3588
}
3589

    
3590
/**
3591
 * Processes a machine-readable name form element.
3592
 *
3593
 * @param $element
3594
 *   The form element to process. Properties used:
3595
 *   - #machine_name: An associative array containing:
3596
 *     - exists: A function name to invoke for checking whether a submitted
3597
 *       machine name value already exists. The submitted value is passed as
3598
 *       argument. In most cases, an existing API or menu argument loader
3599
 *       function can be re-used. The callback is only invoked, if the submitted
3600
 *       value differs from the element's #default_value.
3601
 *     - source: (optional) The #array_parents of the form element containing
3602
 *       the human-readable name (i.e., as contained in the $form structure) to
3603
 *       use as source for the machine name. Defaults to array('name').
3604
 *     - label: (optional) A text to display as label for the machine name value
3605
 *       after the human-readable name form element. Defaults to "Machine name".
3606
 *     - replace_pattern: (optional) A regular expression (without delimiters)
3607
 *       matching disallowed characters in the machine name. Defaults to
3608
 *       '[^a-z0-9_]+'.
3609
 *     - replace: (optional) A character to replace disallowed characters in the
3610
 *       machine name via JavaScript. Defaults to '_' (underscore). When using a
3611
 *       different character, 'replace_pattern' needs to be set accordingly.
3612
 *     - error: (optional) A custom form error message string to show, if the
3613
 *       machine name contains disallowed characters.
3614
 *     - standalone: (optional) Whether the live preview should stay in its own
3615
 *       form element rather than in the suffix of the source element. Defaults
3616
 *       to FALSE.
3617
 *   - #maxlength: (optional) Should be set to the maximum allowed length of the
3618
 *     machine name. Defaults to 64.
3619
 *   - #disabled: (optional) Should be set to TRUE in case an existing machine
3620
 *     name must not be changed after initial creation.
3621
 */
3622
function form_process_machine_name($element, &$form_state) {
3623
  // Apply default form element properties.
3624
  $element += array(
3625
    '#title' => t('Machine-readable name'),
3626
    '#description' => t('A unique machine-readable name. Can only contain lowercase letters, numbers, and underscores.'),
3627
    '#machine_name' => array(),
3628
    '#field_prefix' => '',
3629
    '#field_suffix' => '',
3630
    '#suffix' => '',
3631
  );
3632
  // A form element that only wants to set one #machine_name property (usually
3633
  // 'source' only) would leave all other properties undefined, if the defaults
3634
  // were defined in hook_element_info(). Therefore, we apply the defaults here.
3635
  $element['#machine_name'] += array(
3636
    'source' => array('name'),
3637
    'target' => '#' . $element['#id'],
3638
    'label' => t('Machine name'),
3639
    'replace_pattern' => '[^a-z0-9_]+',
3640
    'replace' => '_',
3641
    'standalone' => FALSE,
3642
    'field_prefix' => $element['#field_prefix'],
3643
    'field_suffix' => $element['#field_suffix'],
3644
  );
3645

    
3646
  // By default, machine names are restricted to Latin alphanumeric characters.
3647
  // So, default to LTR directionality.
3648
  if (!isset($element['#attributes'])) {
3649
    $element['#attributes'] = array();
3650
  }
3651
  $element['#attributes'] += array('dir' => 'ltr');
3652

    
3653
  // The source element defaults to array('name'), but may have been overidden.
3654
  if (empty($element['#machine_name']['source'])) {
3655
    return $element;
3656
  }
3657

    
3658
  // Retrieve the form element containing the human-readable name from the
3659
  // complete form in $form_state. By reference, because we may need to append
3660
  // a #field_suffix that will hold the live preview.
3661
  $key_exists = NULL;
3662
  $source = drupal_array_get_nested_value($form_state['complete form'], $element['#machine_name']['source'], $key_exists);
3663
  if (!$key_exists) {
3664
    return $element;
3665
  }
3666

    
3667
  $suffix_id = $source['#id'] . '-machine-name-suffix';
3668
  $element['#machine_name']['suffix'] = '#' . $suffix_id;
3669

    
3670
  if ($element['#machine_name']['standalone']) {
3671
    $element['#suffix'] .= ' <small id="' . $suffix_id . '">&nbsp;</small>';
3672
  }
3673
  else {
3674
    // Append a field suffix to the source form element, which will contain
3675
    // the live preview of the machine name.
3676
    $source += array('#field_suffix' => '');
3677
    $source['#field_suffix'] .= ' <small id="' . $suffix_id . '">&nbsp;</small>';
3678

    
3679
    $parents = array_merge($element['#machine_name']['source'], array('#field_suffix'));
3680
    drupal_array_set_nested_value($form_state['complete form'], $parents, $source['#field_suffix']);
3681
  }
3682

    
3683
  $js_settings = array(
3684
    'type' => 'setting',
3685
    'data' => array(
3686
      'machineName' => array(
3687
        '#' . $source['#id'] => $element['#machine_name'],
3688
      ),
3689
    ),
3690
  );
3691
  $element['#attached']['js'][] = 'misc/machine-name.js';
3692
  $element['#attached']['js'][] = $js_settings;
3693

    
3694
  return $element;
3695
}
3696

    
3697
/**
3698
 * Form element validation handler for machine_name elements.
3699
 *
3700
 * Note that #maxlength is validated by _form_validate() already.
3701
 */
3702
function form_validate_machine_name(&$element, &$form_state) {
3703
  // Verify that the machine name not only consists of replacement tokens.
3704
  if (preg_match('@^' . $element['#machine_name']['replace'] . '+$@', $element['#value'])) {
3705
    form_error($element, t('The machine-readable name must contain unique characters.'));
3706
  }
3707

    
3708
  // Verify that the machine name contains no disallowed characters.
3709
  if (preg_match('@' . $element['#machine_name']['replace_pattern'] . '@', $element['#value'])) {
3710
    if (!isset($element['#machine_name']['error'])) {
3711
      // Since a hyphen is the most common alternative replacement character,
3712
      // a corresponding validation error message is supported here.
3713
      if ($element['#machine_name']['replace'] == '-') {
3714
        form_error($element, t('The machine-readable name must contain only lowercase letters, numbers, and hyphens.'));
3715
      }
3716
      // Otherwise, we assume the default (underscore).
3717
      else {
3718
        form_error($element, t('The machine-readable name must contain only lowercase letters, numbers, and underscores.'));
3719
      }
3720
    }
3721
    else {
3722
      form_error($element, $element['#machine_name']['error']);
3723
    }
3724
  }
3725

    
3726
  // Verify that the machine name is unique.
3727
  if ($element['#default_value'] !== $element['#value']) {
3728
    $function = $element['#machine_name']['exists'];
3729
    if ($function($element['#value'], $element, $form_state)) {
3730
      form_error($element, t('The machine-readable name is already in use. It must be unique.'));
3731
    }
3732
  }
3733
}
3734

    
3735
/**
3736
 * Arranges fieldsets into groups.
3737
 *
3738
 * @param $element
3739
 *   An associative array containing the properties and children of the
3740
 *   fieldset. Note that $element must be taken by reference here, so processed
3741
 *   child elements are taken over into $form_state.
3742
 * @param $form_state
3743
 *   The $form_state array for the form this fieldset belongs to.
3744
 *
3745
 * @return
3746
 *   The processed element.
3747
 */
3748
function form_process_fieldset(&$element, &$form_state) {
3749
  $parents = implode('][', $element['#parents']);
3750

    
3751
  // Each fieldset forms a new group. The #type 'vertical_tabs' basically only
3752
  // injects a new fieldset.
3753
  $form_state['groups'][$parents]['#group_exists'] = TRUE;
3754
  $element['#groups'] = &$form_state['groups'];
3755

    
3756
  // Process vertical tabs group member fieldsets.
3757
  if (isset($element['#group'])) {
3758
    // Add this fieldset to the defined group (by reference).
3759
    $group = $element['#group'];
3760
    $form_state['groups'][$group][] = &$element;
3761
  }
3762

    
3763
  // Contains form element summary functionalities.
3764
  $element['#attached']['library'][] = array('system', 'drupal.form');
3765

    
3766
  // The .form-wrapper class is required for #states to treat fieldsets like
3767
  // containers.
3768
  if (!isset($element['#attributes']['class'])) {
3769
    $element['#attributes']['class'] = array();
3770
  }
3771

    
3772
  // Collapsible fieldsets
3773
  if (!empty($element['#collapsible'])) {
3774
    $element['#attached']['library'][] = array('system', 'drupal.collapse');
3775
    $element['#attributes']['class'][] = 'collapsible';
3776
    if (!empty($element['#collapsed'])) {
3777
      $element['#attributes']['class'][] = 'collapsed';
3778
    }
3779
  }
3780

    
3781
  return $element;
3782
}
3783

    
3784
/**
3785
 * Adds members of this group as actual elements for rendering.
3786
 *
3787
 * @param $element
3788
 *   An associative array containing the properties and children of the
3789
 *   fieldset.
3790
 *
3791
 * @return
3792
 *   The modified element with all group members.
3793
 */
3794
function form_pre_render_fieldset($element) {
3795
  // Fieldsets may be rendered outside of a Form API context.
3796
  if (!isset($element['#parents']) || !isset($element['#groups'])) {
3797
    return $element;
3798
  }
3799
  // Inject group member elements belonging to this group.
3800
  $parents = implode('][', $element['#parents']);
3801
  $children = element_children($element['#groups'][$parents]);
3802
  if (!empty($children)) {
3803
    foreach ($children as $key) {
3804
      // Break references and indicate that the element should be rendered as
3805
      // group member.
3806
      $child = (array) $element['#groups'][$parents][$key];
3807
      $child['#group_fieldset'] = TRUE;
3808
      // Inject the element as new child element.
3809
      $element[] = $child;
3810

    
3811
      $sort = TRUE;
3812
    }
3813
    // Re-sort the element's children if we injected group member elements.
3814
    if (isset($sort)) {
3815
      $element['#sorted'] = FALSE;
3816
    }
3817
  }
3818

    
3819
  if (isset($element['#group'])) {
3820
    $group = $element['#group'];
3821
    // If this element belongs to a group, but the group-holding element does
3822
    // not exist, we need to render it (at its original location).
3823
    if (!isset($element['#groups'][$group]['#group_exists'])) {
3824
      // Intentionally empty to clarify the flow; we simply return $element.
3825
    }
3826
    // If we injected this element into the group, then we want to render it.
3827
    elseif (!empty($element['#group_fieldset'])) {
3828
      // Intentionally empty to clarify the flow; we simply return $element.
3829
    }
3830
    // Otherwise, this element belongs to a group and the group exists, so we do
3831
    // not render it.
3832
    elseif (element_children($element['#groups'][$group])) {
3833
      $element['#printed'] = TRUE;
3834
    }
3835
  }
3836

    
3837
  return $element;
3838
}
3839

    
3840
/**
3841
 * Creates a group formatted as vertical tabs.
3842
 *
3843
 * @param $element
3844
 *   An associative array containing the properties and children of the
3845
 *   fieldset.
3846
 * @param $form_state
3847
 *   The $form_state array for the form this vertical tab widget belongs to.
3848
 *
3849
 * @return
3850
 *   The processed element.
3851
 */
3852
function form_process_vertical_tabs($element, &$form_state) {
3853
  // Inject a new fieldset as child, so that form_process_fieldset() processes
3854
  // this fieldset like any other fieldset.
3855
  $element['group'] = array(
3856
    '#type' => 'fieldset',
3857
    '#theme_wrappers' => array(),
3858
    '#parents' => $element['#parents'],
3859
  );
3860

    
3861
  // The JavaScript stores the currently selected tab in this hidden
3862
  // field so that the active tab can be restored the next time the
3863
  // form is rendered, e.g. on preview pages or when form validation
3864
  // fails.
3865
  $name = implode('__', $element['#parents']);
3866
  if (isset($form_state['values'][$name . '__active_tab'])) {
3867
    $element['#default_tab'] = $form_state['values'][$name . '__active_tab'];
3868
  }
3869
  $element[$name . '__active_tab'] = array(
3870
    '#type' => 'hidden',
3871
    '#default_value' => $element['#default_tab'],
3872
    '#attributes' => array('class' => array('vertical-tabs-active-tab')),
3873
  );
3874

    
3875
  return $element;
3876
}
3877

    
3878
/**
3879
 * Returns HTML for an element's children fieldsets as vertical tabs.
3880
 *
3881
 * @param $variables
3882
 *   An associative array containing:
3883
 *   - element: An associative array containing the properties and children of
3884
 *     the fieldset. Properties used: #children.
3885
 *
3886
 * @ingroup themeable
3887
 */
3888
function theme_vertical_tabs($variables) {
3889
  $element = $variables['element'];
3890
  // Add required JavaScript and Stylesheet.
3891
  drupal_add_library('system', 'drupal.vertical-tabs');
3892

    
3893
  $output = '<h2 class="element-invisible">' . t('Vertical Tabs') . '</h2>';
3894
  $output .= '<div class="vertical-tabs-panes">' . $element['#children'] . '</div>';
3895
  return $output;
3896
}
3897

    
3898
/**
3899
 * Returns HTML for a submit button form element.
3900
 *
3901
 * @param $variables
3902
 *   An associative array containing:
3903
 *   - element: An associative array containing the properties of the element.
3904
 *     Properties used: #attributes, #button_type, #name, #value.
3905
 *
3906
 * @ingroup themeable
3907
 */
3908
function theme_submit($variables) {
3909
  return theme('button', $variables['element']);
3910
}
3911

    
3912
/**
3913
 * Returns HTML for a button form element.
3914
 *
3915
 * @param $variables
3916
 *   An associative array containing:
3917
 *   - element: An associative array containing the properties of the element.
3918
 *     Properties used: #attributes, #button_type, #name, #value.
3919
 *
3920
 * @ingroup themeable
3921
 */
3922
function theme_button($variables) {
3923
  $element = $variables['element'];
3924
  $element['#attributes']['type'] = 'submit';
3925
  element_set_attributes($element, array('id', 'name', 'value'));
3926

    
3927
  $element['#attributes']['class'][] = 'form-' . $element['#button_type'];
3928
  if (!empty($element['#attributes']['disabled'])) {
3929
    $element['#attributes']['class'][] = 'form-button-disabled';
3930
  }
3931

    
3932
  return '<input' . drupal_attributes($element['#attributes']) . ' />';
3933
}
3934

    
3935
/**
3936
 * Returns HTML for an image button form element.
3937
 *
3938
 * @param $variables
3939
 *   An associative array containing:
3940
 *   - element: An associative array containing the properties of the element.
3941
 *     Properties used: #attributes, #button_type, #name, #value, #title, #src.
3942
 *
3943
 * @ingroup themeable
3944
 */
3945
function theme_image_button($variables) {
3946
  $element = $variables['element'];
3947
  $element['#attributes']['type'] = 'image';
3948
  element_set_attributes($element, array('id', 'name', 'value'));
3949

    
3950
  $element['#attributes']['src'] = file_create_url($element['#src']);
3951
  if (!empty($element['#title'])) {
3952
    $element['#attributes']['alt'] = $element['#title'];
3953
    $element['#attributes']['title'] = $element['#title'];
3954
  }
3955

    
3956
  $element['#attributes']['class'][] = 'form-' . $element['#button_type'];
3957
  if (!empty($element['#attributes']['disabled'])) {
3958
    $element['#attributes']['class'][] = 'form-button-disabled';
3959
  }
3960

    
3961
  return '<input' . drupal_attributes($element['#attributes']) . ' />';
3962
}
3963

    
3964
/**
3965
 * Returns HTML for a hidden form element.
3966
 *
3967
 * @param $variables
3968
 *   An associative array containing:
3969
 *   - element: An associative array containing the properties of the element.
3970
 *     Properties used: #name, #value, #attributes.
3971
 *
3972
 * @ingroup themeable
3973
 */
3974
function theme_hidden($variables) {
3975
  $element = $variables['element'];
3976
  $element['#attributes']['type'] = 'hidden';
3977
  element_set_attributes($element, array('name', 'value'));
3978
  return '<input' . drupal_attributes($element['#attributes']) . " />\n";
3979
}
3980

    
3981
/**
3982
 * Process function to prepare autocomplete data.
3983
 *
3984
 * @param $element
3985
 *   A textfield or other element with a #autocomplete_path.
3986
 *
3987
 * @return array
3988
 *   The processed form element.
3989
 */
3990
function form_process_autocomplete($element) {
3991
  $element['#autocomplete_input'] = array();
3992
  if ($element['#autocomplete_path'] && drupal_valid_path($element['#autocomplete_path'])) {
3993
    $element['#autocomplete_input']['#id'] = $element['#id'] .'-autocomplete';
3994
    // Force autocomplete to use non-clean URLs since this protects against the
3995
    // browser interpreting the path plus search string as an actual file.
3996
    $current_clean_url = isset($GLOBALS['conf']['clean_url']) ? $GLOBALS['conf']['clean_url'] : NULL;
3997
    $GLOBALS['conf']['clean_url'] = 0;
3998
    // Force the script path to 'index.php', in case the server is not
3999
    // configured to find it automatically. Normally it is the responsibility
4000
    // of the site to do this themselves using hook_url_outbound_alter() (see
4001
    // url()) but since this code is forcing non-clean URLs on sites that don't
4002
    // normally use them, it is done here instead.
4003
    $element['#autocomplete_input']['#url_value'] = url($element['#autocomplete_path'], array('absolute' => TRUE, 'script' => 'index.php'));
4004
    $GLOBALS['conf']['clean_url'] = $current_clean_url;
4005
  }
4006
  return $element;
4007
}
4008

    
4009
/**
4010
 * Returns HTML for a textfield form element.
4011
 *
4012
 * @param $variables
4013
 *   An associative array containing:
4014
 *   - element: An associative array containing the properties of the element.
4015
 *     Properties used: #title, #value, #description, #size, #maxlength,
4016
 *     #required, #attributes, #autocomplete_path.
4017
 *
4018
 * @ingroup themeable
4019
 */
4020
function theme_textfield($variables) {
4021
  $element = $variables['element'];
4022
  $element['#attributes']['type'] = 'text';
4023
  element_set_attributes($element, array('id', 'name', 'value', 'size', 'maxlength'));
4024
  _form_set_class($element, array('form-text'));
4025

    
4026
  $extra = '';
4027
  if ($element['#autocomplete_path'] && !empty($element['#autocomplete_input'])) {
4028
    drupal_add_library('system', 'drupal.autocomplete');
4029
    $element['#attributes']['class'][] = 'form-autocomplete';
4030

    
4031
    $attributes = array();
4032
    $attributes['type'] = 'hidden';
4033
    $attributes['id'] = $element['#autocomplete_input']['#id'];
4034
    $attributes['value'] = $element['#autocomplete_input']['#url_value'];
4035
    $attributes['disabled'] = 'disabled';
4036
    $attributes['class'][] = 'autocomplete';
4037
    $extra = '<input' . drupal_attributes($attributes) . ' />';
4038
  }
4039

    
4040
  $output = '<input' . drupal_attributes($element['#attributes']) . ' />';
4041

    
4042
  return $output . $extra;
4043
}
4044

    
4045
/**
4046
 * Returns HTML for a form.
4047
 *
4048
 * @param $variables
4049
 *   An associative array containing:
4050
 *   - element: An associative array containing the properties of the element.
4051
 *     Properties used: #action, #method, #attributes, #children
4052
 *
4053
 * @ingroup themeable
4054
 */
4055
function theme_form($variables) {
4056
  $element = $variables['element'];
4057
  if (isset($element['#action'])) {
4058
    $element['#attributes']['action'] = drupal_strip_dangerous_protocols($element['#action']);
4059
  }
4060
  element_set_attributes($element, array('method', 'id'));
4061
  if (empty($element['#attributes']['accept-charset'])) {
4062
    $element['#attributes']['accept-charset'] = "UTF-8";
4063
  }
4064
  // Anonymous DIV to satisfy XHTML compliance.
4065
  return '<form' . drupal_attributes($element['#attributes']) . '><div>' . $element['#children'] . '</div></form>';
4066
}
4067

    
4068
/**
4069
 * Returns HTML for a textarea form element.
4070
 *
4071
 * @param $variables
4072
 *   An associative array containing:
4073
 *   - element: An associative array containing the properties of the element.
4074
 *     Properties used: #title, #value, #description, #rows, #cols, #required,
4075
 *     #attributes
4076
 *
4077
 * @ingroup themeable
4078
 */
4079
function theme_textarea($variables) {
4080
  $element = $variables['element'];
4081
  element_set_attributes($element, array('id', 'name', 'cols', 'rows'));
4082
  _form_set_class($element, array('form-textarea'));
4083

    
4084
  $wrapper_attributes = array(
4085
    'class' => array('form-textarea-wrapper'),
4086
  );
4087

    
4088
  // Add resizable behavior.
4089
  if (!empty($element['#resizable'])) {
4090
    drupal_add_library('system', 'drupal.textarea');
4091
    $wrapper_attributes['class'][] = 'resizable';
4092
  }
4093

    
4094
  $output = '<div' . drupal_attributes($wrapper_attributes) . '>';
4095
  $output .= '<textarea' . drupal_attributes($element['#attributes']) . '>' . check_plain($element['#value']) . '</textarea>';
4096
  $output .= '</div>';
4097
  return $output;
4098
}
4099

    
4100
/**
4101
 * Returns HTML for a password form element.
4102
 *
4103
 * @param $variables
4104
 *   An associative array containing:
4105
 *   - element: An associative array containing the properties of the element.
4106
 *     Properties used: #title, #value, #description, #size, #maxlength,
4107
 *     #required, #attributes.
4108
 *
4109
 * @ingroup themeable
4110
 */
4111
function theme_password($variables) {
4112
  $element = $variables['element'];
4113
  $element['#attributes']['type'] = 'password';
4114
  element_set_attributes($element, array('id', 'name', 'size', 'maxlength'));
4115
  _form_set_class($element, array('form-text'));
4116

    
4117
  return '<input' . drupal_attributes($element['#attributes']) . ' />';
4118
}
4119

    
4120
/**
4121
 * Expands a weight element into a select element.
4122
 */
4123
function form_process_weight($element) {
4124
  $element['#is_weight'] = TRUE;
4125

    
4126
  // If the number of options is small enough, use a select field.
4127
  $max_elements = variable_get('drupal_weight_select_max', DRUPAL_WEIGHT_SELECT_MAX);
4128
  if ($element['#delta'] <= $max_elements) {
4129
    $element['#type'] = 'select';
4130
    $weights = array();
4131
    for ($n = (-1 * $element['#delta']); $n <= $element['#delta']; $n++) {
4132
      $weights[$n] = $n;
4133
    }
4134
    if (isset($element['#default_value'])) {
4135
      $default_value = (int) $element['#default_value'];
4136
      if (!isset($weights[$default_value])) {
4137
        $weights[$default_value] = $default_value;
4138
        ksort($weights);
4139
      }
4140
    }
4141
    $element['#options'] = $weights;
4142
    $element += element_info('select');
4143
  }
4144
  // Otherwise, use a text field.
4145
  else {
4146
    $element['#type'] = 'textfield';
4147
    // Use a field big enough to fit most weights.
4148
    $element['#size'] = 10;
4149
    $element['#element_validate'] = array('element_validate_integer');
4150
    $element += element_info('textfield');
4151
  }
4152

    
4153
  return $element;
4154
}
4155

    
4156
/**
4157
 * Returns HTML for a file upload form element.
4158
 *
4159
 * For assistance with handling the uploaded file correctly, see the API
4160
 * provided by file.inc.
4161
 *
4162
 * @param $variables
4163
 *   An associative array containing:
4164
 *   - element: An associative array containing the properties of the element.
4165
 *     Properties used: #title, #name, #size, #description, #required,
4166
 *     #attributes.
4167
 *
4168
 * @ingroup themeable
4169
 */
4170
function theme_file($variables) {
4171
  $element = $variables['element'];
4172
  $element['#attributes']['type'] = 'file';
4173
  element_set_attributes($element, array('id', 'name', 'size'));
4174
  _form_set_class($element, array('form-file'));
4175

    
4176
  return '<input' . drupal_attributes($element['#attributes']) . ' />';
4177
}
4178

    
4179
/**
4180
 * Returns HTML for a form element.
4181
 *
4182
 * Each form element is wrapped in a DIV container having the following CSS
4183
 * classes:
4184
 * - form-item: Generic for all form elements.
4185
 * - form-type-#type: The internal element #type.
4186
 * - form-item-#name: The internal form element #name (usually derived from the
4187
 *   $form structure and set via form_builder()).
4188
 * - form-disabled: Only set if the form element is #disabled.
4189
 *
4190
 * In addition to the element itself, the DIV contains a label for the element
4191
 * based on the optional #title_display property, and an optional #description.
4192
 *
4193
 * The optional #title_display property can have these values:
4194
 * - before: The label is output before the element. This is the default.
4195
 *   The label includes the #title and the required marker, if #required.
4196
 * - after: The label is output after the element. For example, this is used
4197
 *   for radio and checkbox #type elements as set in system_element_info().
4198
 *   If the #title is empty but the field is #required, the label will
4199
 *   contain only the required marker.
4200
 * - invisible: Labels are critical for screen readers to enable them to
4201
 *   properly navigate through forms but can be visually distracting. This
4202
 *   property hides the label for everyone except screen readers.
4203
 * - attribute: Set the title attribute on the element to create a tooltip
4204
 *   but output no label element. This is supported only for checkboxes
4205
 *   and radios in form_pre_render_conditional_form_element(). It is used
4206
 *   where a visual label is not needed, such as a table of checkboxes where
4207
 *   the row and column provide the context. The tooltip will include the
4208
 *   title and required marker.
4209
 *
4210
 * If the #title property is not set, then the label and any required marker
4211
 * will not be output, regardless of the #title_display or #required values.
4212
 * This can be useful in cases such as the password_confirm element, which
4213
 * creates children elements that have their own labels and required markers,
4214
 * but the parent element should have neither. Use this carefully because a
4215
 * field without an associated label can cause accessibility challenges.
4216
 *
4217
 * @param $variables
4218
 *   An associative array containing:
4219
 *   - element: An associative array containing the properties of the element.
4220
 *     Properties used: #title, #title_display, #description, #id, #required,
4221
 *     #children, #type, #name.
4222
 *
4223
 * @ingroup themeable
4224
 */
4225
function theme_form_element($variables) {
4226
  $element = &$variables['element'];
4227

    
4228
  // This function is invoked as theme wrapper, but the rendered form element
4229
  // may not necessarily have been processed by form_builder().
4230
  $element += array(
4231
    '#title_display' => 'before',
4232
  );
4233

    
4234
  // Add element #id for #type 'item'.
4235
  if (isset($element['#markup']) && !empty($element['#id'])) {
4236
    $attributes['id'] = $element['#id'];
4237
  }
4238
  // Add element's #type and #name as class to aid with JS/CSS selectors.
4239
  $attributes['class'] = array('form-item');
4240
  if (!empty($element['#type'])) {
4241
    $attributes['class'][] = 'form-type-' . strtr($element['#type'], '_', '-');
4242
  }
4243
  if (!empty($element['#name'])) {
4244
    $attributes['class'][] = 'form-item-' . strtr($element['#name'], array(' ' => '-', '_' => '-', '[' => '-', ']' => ''));
4245
  }
4246
  // Add a class for disabled elements to facilitate cross-browser styling.
4247
  if (!empty($element['#attributes']['disabled'])) {
4248
    $attributes['class'][] = 'form-disabled';
4249
  }
4250
  $output = '<div' . drupal_attributes($attributes) . '>' . "\n";
4251

    
4252
  // If #title is not set, we don't display any label or required marker.
4253
  if (!isset($element['#title'])) {
4254
    $element['#title_display'] = 'none';
4255
  }
4256
  $prefix = isset($element['#field_prefix']) ? '<span class="field-prefix">' . $element['#field_prefix'] . '</span> ' : '';
4257
  $suffix = isset($element['#field_suffix']) ? ' <span class="field-suffix">' . $element['#field_suffix'] . '</span>' : '';
4258

    
4259
  switch ($element['#title_display']) {
4260
    case 'before':
4261
    case 'invisible':
4262
      $output .= ' ' . theme('form_element_label', $variables);
4263
      $output .= ' ' . $prefix . $element['#children'] . $suffix . "\n";
4264
      break;
4265

    
4266
    case 'after':
4267
      $output .= ' ' . $prefix . $element['#children'] . $suffix;
4268
      $output .= ' ' . theme('form_element_label', $variables) . "\n";
4269
      break;
4270

    
4271
    case 'none':
4272
    case 'attribute':
4273
      // Output no label and no required marker, only the children.
4274
      $output .= ' ' . $prefix . $element['#children'] . $suffix . "\n";
4275
      break;
4276
  }
4277

    
4278
  if (!empty($element['#description'])) {
4279
    $output .= '<div class="description">' . $element['#description'] . "</div>\n";
4280
  }
4281

    
4282
  $output .= "</div>\n";
4283

    
4284
  return $output;
4285
}
4286

    
4287
/**
4288
 * Returns HTML for a marker for required form elements.
4289
 *
4290
 * @param $variables
4291
 *   An associative array containing:
4292
 *   - element: An associative array containing the properties of the element.
4293
 *
4294
 * @ingroup themeable
4295
 */
4296
function theme_form_required_marker($variables) {
4297
  // This is also used in the installer, pre-database setup.
4298
  $t = get_t();
4299
  $attributes = array(
4300
    'class' => 'form-required',
4301
    'title' => $t('This field is required.'),
4302
  );
4303
  return '<span' . drupal_attributes($attributes) . '>*</span>';
4304
}
4305

    
4306
/**
4307
 * Returns HTML for a form element label and required marker.
4308
 *
4309
 * Form element labels include the #title and a #required marker. The label is
4310
 * associated with the element itself by the element #id. Labels may appear
4311
 * before or after elements, depending on theme_form_element() and
4312
 * #title_display.
4313
 *
4314
 * This function will not be called for elements with no labels, depending on
4315
 * #title_display. For elements that have an empty #title and are not required,
4316
 * this function will output no label (''). For required elements that have an
4317
 * empty #title, this will output the required marker alone within the label.
4318
 * The label will use the #id to associate the marker with the field that is
4319
 * required. That is especially important for screenreader users to know
4320
 * which field is required.
4321
 *
4322
 * @param $variables
4323
 *   An associative array containing:
4324
 *   - element: An associative array containing the properties of the element.
4325
 *     Properties used: #required, #title, #id, #value, #description.
4326
 *
4327
 * @ingroup themeable
4328
 */
4329
function theme_form_element_label($variables) {
4330
  $element = $variables['element'];
4331
  // This is also used in the installer, pre-database setup.
4332
  $t = get_t();
4333

    
4334
  // If title and required marker are both empty, output no label.
4335
  if ((!isset($element['#title']) || $element['#title'] === '') && empty($element['#required'])) {
4336
    return '';
4337
  }
4338

    
4339
  // If the element is required, a required marker is appended to the label.
4340
  $required = !empty($element['#required']) ? theme('form_required_marker', array('element' => $element)) : '';
4341

    
4342
  $title = filter_xss_admin($element['#title']);
4343

    
4344
  $attributes = array();
4345
  // Style the label as class option to display inline with the element.
4346
  if ($element['#title_display'] == 'after') {
4347
    $attributes['class'] = 'option';
4348
  }
4349
  // Show label only to screen readers to avoid disruption in visual flows.
4350
  elseif ($element['#title_display'] == 'invisible') {
4351
    $attributes['class'] = 'element-invisible';
4352
  }
4353

    
4354
  if (!empty($element['#id'])) {
4355
    $attributes['for'] = $element['#id'];
4356
  }
4357

    
4358
  // The leading whitespace helps visually separate fields from inline labels.
4359
  return ' <label' . drupal_attributes($attributes) . '>' . $t('!title !required', array('!title' => $title, '!required' => $required)) . "</label>\n";
4360
}
4361

    
4362
/**
4363
 * Sets a form element's class attribute.
4364
 *
4365
 * Adds 'required' and 'error' classes as needed.
4366
 *
4367
 * @param $element
4368
 *   The form element.
4369
 * @param $name
4370
 *   Array of new class names to be added.
4371
 */
4372
function _form_set_class(&$element, $class = array()) {
4373
  if (!empty($class)) {
4374
    if (!isset($element['#attributes']['class'])) {
4375
      $element['#attributes']['class'] = array();
4376
    }
4377
    $element['#attributes']['class'] = array_merge($element['#attributes']['class'], $class);
4378
  }
4379
  // This function is invoked from form element theme functions, but the
4380
  // rendered form element may not necessarily have been processed by
4381
  // form_builder().
4382
  if (!empty($element['#required'])) {
4383
    $element['#attributes']['class'][] = 'required';
4384
  }
4385
  if (isset($element['#parents']) && form_get_error($element) !== NULL && !empty($element['#validated'])) {
4386
    $element['#attributes']['class'][] = 'error';
4387
  }
4388
}
4389

    
4390
/**
4391
 * Form element validation handler for integer elements.
4392
 */
4393
function element_validate_integer($element, &$form_state) {
4394
  $value = $element['#value'];
4395
  if ($value !== '' && (!is_numeric($value) || intval($value) != $value)) {
4396
    form_error($element, t('%name must be an integer.', array('%name' => $element['#title'])));
4397
  }
4398
}
4399

    
4400
/**
4401
 * Form element validation handler for integer elements that must be positive.
4402
 */
4403
function element_validate_integer_positive($element, &$form_state) {
4404
  $value = $element['#value'];
4405
  if ($value !== '' && (!is_numeric($value) || intval($value) != $value || $value <= 0)) {
4406
    form_error($element, t('%name must be a positive integer.', array('%name' => $element['#title'])));
4407
  }
4408
}
4409

    
4410
/**
4411
 * Form element validation handler for number elements.
4412
 */
4413
function element_validate_number($element, &$form_state) {
4414
  $value = $element['#value'];
4415
  if ($value != '' && !is_numeric($value)) {
4416
    form_error($element, t('%name must be a number.', array('%name' => $element['#title'])));
4417
  }
4418
}
4419

    
4420
/**
4421
 * @} End of "defgroup form_api".
4422
 */
4423

    
4424
/**
4425
 * @defgroup batch Batch operations
4426
 * @{
4427
 * Creates and processes batch operations.
4428
 *
4429
 * Functions allowing forms processing to be spread out over several page
4430
 * requests, thus ensuring that the processing does not get interrupted
4431
 * because of a PHP timeout, while allowing the user to receive feedback
4432
 * on the progress of the ongoing operations.
4433
 *
4434
 * The API is primarily designed to integrate nicely with the Form API
4435
 * workflow, but can also be used by non-Form API scripts (like update.php)
4436
 * or even simple page callbacks (which should probably be used sparingly).
4437
 *
4438
 * Example:
4439
 * @code
4440
 * $batch = array(
4441
 *   'title' => t('Exporting'),
4442
 *   'operations' => array(
4443
 *     array('my_function_1', array($account->uid, 'story')),
4444
 *     array('my_function_2', array()),
4445
 *   ),
4446
 *   'finished' => 'my_finished_callback',
4447
 *   'file' => 'path_to_file_containing_myfunctions',
4448
 * );
4449
 * batch_set($batch);
4450
 * // Only needed if not inside a form _submit handler.
4451
 * // Setting redirect in batch_process.
4452
 * batch_process('node/1');
4453
 * @endcode
4454
 *
4455
 * Note: if the batch 'title', 'init_message', 'progress_message', or
4456
 * 'error_message' could contain any user input, it is the responsibility of
4457
 * the code calling batch_set() to sanitize them first with a function like
4458
 * check_plain() or filter_xss(). Furthermore, if the batch operation
4459
 * returns any user input in the 'results' or 'message' keys of $context,
4460
 * it must also sanitize them first.
4461
 *
4462
 * Sample callback_batch_operation():
4463
 * @code
4464
 * // Simple and artificial: load a node of a given type for a given user
4465
 * function my_function_1($uid, $type, &$context) {
4466
 *   // The $context array gathers batch context information about the execution (read),
4467
 *   // as well as 'return values' for the current operation (write)
4468
 *   // The following keys are provided :
4469
 *   // 'results' (read / write): The array of results gathered so far by
4470
 *   //   the batch processing, for the current operation to append its own.
4471
 *   // 'message' (write): A text message displayed in the progress page.
4472
 *   // The following keys allow for multi-step operations :
4473
 *   // 'sandbox' (read / write): An array that can be freely used to
4474
 *   //   store persistent data between iterations. It is recommended to
4475
 *   //   use this instead of $_SESSION, which is unsafe if the user
4476
 *   //   continues browsing in a separate window while the batch is processing.
4477
 *   // 'finished' (write): A float number between 0 and 1 informing
4478
 *   //   the processing engine of the completion level for the operation.
4479
 *   //   1 (or no value explicitly set) means the operation is finished
4480
 *   //   and the batch processing can continue to the next operation.
4481
 *
4482
 *   $node = node_load(array('uid' => $uid, 'type' => $type));
4483
 *   $context['results'][] = $node->nid . ' : ' . check_plain($node->title);
4484
 *   $context['message'] = check_plain($node->title);
4485
 * }
4486
 *
4487
 * // More advanced example: multi-step operation - load all nodes, five by five
4488
 * function my_function_2(&$context) {
4489
 *   if (empty($context['sandbox'])) {
4490
 *     $context['sandbox']['progress'] = 0;
4491
 *     $context['sandbox']['current_node'] = 0;
4492
 *     $context['sandbox']['max'] = db_query('SELECT COUNT(DISTINCT nid) FROM {node}')->fetchField();
4493
 *   }
4494
 *   $limit = 5;
4495
 *   $result = db_select('node')
4496
 *     ->fields('node', array('nid'))
4497
 *     ->condition('nid', $context['sandbox']['current_node'], '>')
4498
 *     ->orderBy('nid')
4499
 *     ->range(0, $limit)
4500
 *     ->execute();
4501
 *   foreach ($result as $row) {
4502
 *     $node = node_load($row->nid, NULL, TRUE);
4503
 *     $context['results'][] = $node->nid . ' : ' . check_plain($node->title);
4504
 *     $context['sandbox']['progress']++;
4505
 *     $context['sandbox']['current_node'] = $node->nid;
4506
 *     $context['message'] = check_plain($node->title);
4507
 *   }
4508
 *   if ($context['sandbox']['progress'] != $context['sandbox']['max']) {
4509
 *     $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max'];
4510
 *   }
4511
 * }
4512
 * @endcode
4513
 *
4514
 * Sample callback_batch_finished():
4515
 * @code
4516
 * function my_finished_callback($success, $results, $operations) {
4517
 *   // The 'success' parameter means no fatal PHP errors were detected. All
4518
 *   // other error management should be handled using 'results'.
4519
 *   if ($success) {
4520
 *     $message = format_plural(count($results), 'One post processed.', '@count posts processed.');
4521
 *   }
4522
 *   else {
4523
 *     $message = t('Finished with an error.');
4524
 *   }
4525
 *   drupal_set_message($message);
4526
 *   // Providing data for the redirected page is done through $_SESSION.
4527
 *   foreach ($results as $result) {
4528
 *     $items[] = t('Loaded node %title.', array('%title' => $result));
4529
 *   }
4530
 *   $_SESSION['my_batch_results'] = $items;
4531
 * }
4532
 * @endcode
4533
 */
4534

    
4535
/**
4536
 * Adds a new batch.
4537
 *
4538
 * Batch operations are added as new batch sets. Batch sets are used to spread
4539
 * processing (primarily, but not exclusively, forms processing) over several
4540
 * page requests. This helps to ensure that the processing is not interrupted
4541
 * due to PHP timeouts, while users are still able to receive feedback on the
4542
 * progress of the ongoing operations. Combining related operations into
4543
 * distinct batch sets provides clean code independence for each batch set,
4544
 * ensuring that two or more batches, submitted independently, can be processed
4545
 * without mutual interference. Each batch set may specify its own set of
4546
 * operations and results, produce its own UI messages, and trigger its own
4547
 * 'finished' callback. Batch sets are processed sequentially, with the progress
4548
 * bar starting afresh for each new set.
4549
 *
4550
 * @param $batch_definition
4551
 *   An associative array defining the batch, with the following elements (all
4552
 *   are optional except as noted):
4553
 *   - operations: (required) Array of operations to be performed, where each
4554
 *     item is an array consisting of the name of an implementation of
4555
 *     callback_batch_operation() and an array of parameter.
4556
 *     Example:
4557
 *     @code
4558
 *     array(
4559
 *       array('callback_batch_operation_1', array($arg1)),
4560
 *       array('callback_batch_operation_2', array($arg2_1, $arg2_2)),
4561
 *     )
4562
 *     @endcode
4563
 *   - title: A safe, translated string to use as the title for the progress
4564
 *     page. Defaults to t('Processing').
4565
 *   - init_message: Message displayed while the processing is initialized.
4566
 *     Defaults to t('Initializing.').
4567
 *   - progress_message: Message displayed while processing the batch. Available
4568
 *     placeholders are @current, @remaining, @total, @percentage, @estimate and
4569
 *     @elapsed. Defaults to t('Completed @current of @total.').
4570
 *   - error_message: Message displayed if an error occurred while processing
4571
 *     the batch. Defaults to t('An error has occurred.').
4572
 *   - finished: Name of an implementation of callback_batch_finished(). This is
4573
 *     executed after the batch has completed. This should be used to perform
4574
 *     any result massaging that may be needed, and possibly save data in
4575
 *     $_SESSION for display after final page redirection.
4576
 *   - file: Path to the file containing the definitions of the 'operations' and
4577
 *     'finished' functions, for instance if they don't reside in the main
4578
 *     .module file. The path should be relative to base_path(), and thus should
4579
 *     be built using drupal_get_path().
4580
 *   - css: Array of paths to CSS files to be used on the progress page.
4581
 *   - url_options: options passed to url() when constructing redirect URLs for
4582
 *     the batch.
4583
 */
4584
function batch_set($batch_definition) {
4585
  if ($batch_definition) {
4586
    $batch =& batch_get();
4587

    
4588
    // Initialize the batch if needed.
4589
    if (empty($batch)) {
4590
      $batch = array(
4591
        'sets' => array(),
4592
        'has_form_submits' => FALSE,
4593
      );
4594
    }
4595

    
4596
    // Base and default properties for the batch set.
4597
    // Use get_t() to allow batches during installation.
4598
    $t = get_t();
4599
    $init = array(
4600
      'sandbox' => array(),
4601
      'results' => array(),
4602
      'success' => FALSE,
4603
      'start' => 0,
4604
      'elapsed' => 0,
4605
    );
4606
    $defaults = array(
4607
      'title' => $t('Processing'),
4608
      'init_message' => $t('Initializing.'),
4609
      'progress_message' => $t('Completed @current of @total.'),
4610
      'error_message' => $t('An error has occurred.'),
4611
      'css' => array(),
4612
    );
4613
    $batch_set = $init + $batch_definition + $defaults;
4614

    
4615
    // Tweak init_message to avoid the bottom of the page flickering down after
4616
    // init phase.
4617
    $batch_set['init_message'] .= '<br/>&nbsp;';
4618

    
4619
    // The non-concurrent workflow of batch execution allows us to save
4620
    // numberOfItems() queries by handling our own counter.
4621
    $batch_set['total'] = count($batch_set['operations']);
4622
    $batch_set['count'] = $batch_set['total'];
4623

    
4624
    // Add the set to the batch.
4625
    if (empty($batch['id'])) {
4626
      // The batch is not running yet. Simply add the new set.
4627
      $batch['sets'][] = $batch_set;
4628
    }
4629
    else {
4630
      // The set is being added while the batch is running. Insert the new set
4631
      // right after the current one to ensure execution order, and store its
4632
      // operations in a queue.
4633
      $index = $batch['current_set'] + 1;
4634
      $slice1 = array_slice($batch['sets'], 0, $index);
4635
      $slice2 = array_slice($batch['sets'], $index);
4636
      $batch['sets'] = array_merge($slice1, array($batch_set), $slice2);
4637
      _batch_populate_queue($batch, $index);
4638
    }
4639
  }
4640
}
4641

    
4642
/**
4643
 * Processes the batch.
4644
 *
4645
 * Unless the batch has been marked with 'progressive' = FALSE, the function
4646
 * issues a drupal_goto and thus ends page execution.
4647
 *
4648
 * This function is generally not needed in form submit handlers;
4649
 * Form API takes care of batches that were set during form submission.
4650
 *
4651
 * @param $redirect
4652
 *   (optional) Path to redirect to when the batch has finished processing.
4653
 * @param $url
4654
 *   (optional - should only be used for separate scripts like update.php)
4655
 *   URL of the batch processing page.
4656
 * @param $redirect_callback
4657
 *   (optional) Specify a function to be called to redirect to the progressive
4658
 *   processing page. By default drupal_goto() will be used to redirect to a
4659
 *   page which will do the progressive page. Specifying another function will
4660
 *   allow the progressive processing to be processed differently.
4661
 */
4662
function batch_process($redirect = NULL, $url = 'batch', $redirect_callback = 'drupal_goto') {
4663
  $batch =& batch_get();
4664

    
4665
  drupal_theme_initialize();
4666

    
4667
  if (isset($batch)) {
4668
    // Add process information
4669
    $process_info = array(
4670
      'current_set' => 0,
4671
      'progressive' => TRUE,
4672
      'url' => $url,
4673
      'url_options' => array(),
4674
      'source_url' => $_GET['q'],
4675
      'redirect' => $redirect,
4676
      'theme' => $GLOBALS['theme_key'],
4677
      'redirect_callback' => $redirect_callback,
4678
    );
4679
    $batch += $process_info;
4680

    
4681
    // The batch is now completely built. Allow other modules to make changes
4682
    // to the batch so that it is easier to reuse batch processes in other
4683
    // environments.
4684
    drupal_alter('batch', $batch);
4685

    
4686
    // Assign an arbitrary id: don't rely on a serial column in the 'batch'
4687
    // table, since non-progressive batches skip database storage completely.
4688
    $batch['id'] = db_next_id();
4689

    
4690
    // Move operations to a job queue. Non-progressive batches will use a
4691
    // memory-based queue.
4692
    foreach ($batch['sets'] as $key => $batch_set) {
4693
      _batch_populate_queue($batch, $key);
4694
    }
4695

    
4696
    // Initiate processing.
4697
    if ($batch['progressive']) {
4698
      // Now that we have a batch id, we can generate the redirection link in
4699
      // the generic error message.
4700
      $t = get_t();
4701
      $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')))));
4702

    
4703
      // Clear the way for the drupal_goto() redirection to the batch processing
4704
      // page, by saving and unsetting the 'destination', if there is any.
4705
      if (isset($_GET['destination'])) {
4706
        $batch['destination'] = $_GET['destination'];
4707
        unset($_GET['destination']);
4708
      }
4709

    
4710
      // Store the batch.
4711
      db_insert('batch')
4712
        ->fields(array(
4713
          'bid' => $batch['id'],
4714
          'timestamp' => REQUEST_TIME,
4715
          'token' => drupal_get_token($batch['id']),
4716
          'batch' => serialize($batch),
4717
        ))
4718
        ->execute();
4719

    
4720
      // Set the batch number in the session to guarantee that it will stay alive.
4721
      $_SESSION['batches'][$batch['id']] = TRUE;
4722

    
4723
      // Redirect for processing.
4724
      $function = $batch['redirect_callback'];
4725
      if (function_exists($function)) {
4726
        $function($batch['url'], array('query' => array('op' => 'start', 'id' => $batch['id'])));
4727
      }
4728
    }
4729
    else {
4730
      // Non-progressive execution: bypass the whole progressbar workflow
4731
      // and execute the batch in one pass.
4732
      require_once DRUPAL_ROOT . '/includes/batch.inc';
4733
      _batch_process();
4734
    }
4735
  }
4736
}
4737

    
4738
/**
4739
 * Retrieves the current batch.
4740
 */
4741
function &batch_get() {
4742
  // Not drupal_static(), because Batch API operates at a lower level than most
4743
  // use-cases for resetting static variables, and we specifically do not want a
4744
  // global drupal_static_reset() resetting the batch information. Functions
4745
  // that are part of the Batch API and need to reset the batch information may
4746
  // call batch_get() and manipulate the result by reference. Functions that are
4747
  // not part of the Batch API can also do this, but shouldn't.
4748
  static $batch = array();
4749
  return $batch;
4750
}
4751

    
4752
/**
4753
 * Populates a job queue with the operations of a batch set.
4754
 *
4755
 * Depending on whether the batch is progressive or not, the BatchQueue or
4756
 * BatchMemoryQueue handler classes will be used.
4757
 *
4758
 * @param $batch
4759
 *   The batch array.
4760
 * @param $set_id
4761
 *   The id of the set to process.
4762
 *
4763
 * @return
4764
 *   The name and class of the queue are added by reference to the batch set.
4765
 */
4766
function _batch_populate_queue(&$batch, $set_id) {
4767
  $batch_set = &$batch['sets'][$set_id];
4768

    
4769
  if (isset($batch_set['operations'])) {
4770
    $batch_set += array(
4771
      'queue' => array(
4772
        'name' => 'drupal_batch:' . $batch['id'] . ':' . $set_id,
4773
        'class' => $batch['progressive'] ? 'BatchQueue' : 'BatchMemoryQueue',
4774
      ),
4775
    );
4776

    
4777
    $queue = _batch_queue($batch_set);
4778
    $queue->createQueue();
4779
    foreach ($batch_set['operations'] as $operation) {
4780
      $queue->createItem($operation);
4781
    }
4782

    
4783
    unset($batch_set['operations']);
4784
  }
4785
}
4786

    
4787
/**
4788
 * Returns a queue object for a batch set.
4789
 *
4790
 * @param $batch_set
4791
 *   The batch set.
4792
 *
4793
 * @return
4794
 *   The queue object.
4795
 */
4796
function _batch_queue($batch_set) {
4797
  static $queues;
4798

    
4799
  // The class autoloader is not available when running update.php, so make
4800
  // sure the files are manually included.
4801
  if (!isset($queues)) {
4802
    $queues = array();
4803
    require_once DRUPAL_ROOT . '/modules/system/system.queue.inc';
4804
    require_once DRUPAL_ROOT . '/includes/batch.queue.inc';
4805
  }
4806

    
4807
  if (isset($batch_set['queue'])) {
4808
    $name = $batch_set['queue']['name'];
4809
    $class = $batch_set['queue']['class'];
4810

    
4811
    if (!isset($queues[$class][$name])) {
4812
      $queues[$class][$name] = new $class($name);
4813
    }
4814
    return $queues[$class][$name];
4815
  }
4816
}
4817

    
4818
/**
4819
 * @} End of "defgroup batch".
4820
 */