form.inc 192 KB

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