国外设计欣赏网站 - DOOOOR.com

 找回密码
 注册

QQ登录

只需一步,快速开始

扫一扫,微信登陆

搜索

[Drupal教程] Drupal的组成部分 4.表单生成

[复制链接]
发表于 11-29-2011 07:32 | 显示全部楼层 |阅读模式

Functions to enable the processing and display of HTML forms.

Drupal uses these functions to achieve consistency in its form processing and presentation, while simplifying code and reducing the amount of HTML that must be explicitly generated by modules.

The drupal_get_form() function handles retrieving, processing, and displaying a rendered HTML form for modules automatically. For example:

<?php // Display the user registration form. $output = drupal_get_form('user_register');

?>

Forms can also be built and submitted programmatically without any user input using the drupal_execute() function.

For information on the format of the structured arrays used to define forms, and more detailed explanations of the Form API workflow, see the reference and the quickstart guide.

函数

名称sort icon位置描述
date_validateincludes/form.incValidates the date type to stop dates like February 30, 2006.
drupal_executeincludes/form.incRetrieves a form using a form_id, populates it with $form_state['values'], processes it, and returns any validation errors encountered. This function is the programmatic counterpart todrupal_get_form().
drupal_get_formincludes/form.incRetrieves a form from a constructor function, or from the cache if the form was built in a previous page-load. The form is then passed on for processing, after and rendered for display if necessary.
drupal_prepare_formincludes/form.incPrepares a structured form array by adding required elements, executing any hook_form_alter functions, and optionally inserting a validation token to prevent tampering.
drupal_process_formincludes/form.incThis function is the heart of form API. The form gets built, validated and in appropriate cases, submitted.
drupal_rebuild_formincludes/form.incRetrieves a form, caches it and processes it with an empty $_POST.
drupal_redirect_formincludes/form.incRedirect the user to a URL after a form has been processed.
drupal_render_formincludes/form.incRenders a structured form array into themed HTML.
drupal_retrieve_formincludes/form.incRetrieves the structured array that defines a given form.
drupal_validate_formincludes/form.incValidates user-submitted form data from the $form_state using the validate functions defined in a structured form array.
form_builderincludes/form.incWalk through the structured form array, adding any required properties to each element and mapping the incoming $_POST data to the proper elements.
form_clean_idincludes/form.incPrepare an HTML ID attribute string for a form item.
form_errorincludes/form.incFlag an element as having an error.
form_execute_handlersincludes/form.incA helper function used to execute custom validation and submission handlers for a given form. Button-specific handlers are checked first. If none exist, the function falls back to form-level handlers.
form_get_cacheincludes/form.incFetch a form from cache.
form_get_errorincludes/form.incReturn the error message filed against the form with the specified name.
form_get_errorsincludes/form.incReturn an associative array of all errors.
form_get_optionsincludes/form.incTraverses a select element's #option array looking for any values that hold the given key. Returns an array of indexes that match.
form_process_ahahincludes/form.incAdd AHAH information about a form element to the page to communicate with javascript. If #ahah[path] is set on an element, this additional javascript is added to the page header to attach the AHAH behaviors. See ahah.js for more information.
form_process_dateincludes/form.incRoll out a single date element.
form_process_input_formatincludes/form.incAdd input format selector to text elements with the #input_format property.
form_process_password_confirmincludes/form.incExpand a password_confirm field into two text boxes.
form_process_radiosincludes/form.incRoll out a single radios element to a list of radios, using the options array as index.
form_process_weightincludes/form.incExpand weight elements into selects.
form_set_cacheincludes/form.incStore a form in the cache
form_set_errorincludes/form.incFile an error against a form element.
form_set_valueincludes/form.incChange submitted form values during the form processing cycle.
form_type_checkboxes_valueincludes/form.incHelper function to determine the value for a checkboxes form element.
form_type_checkbox_valueincludes/form.incHelper function to determine the value for a checkbox form element.
form_type_image_button_valueincludes/form.incHelper function to determine the value for an image button form element.
form_type_password_confirm_valueincludes/form.incHelper function to determine the value for a password_confirm form element.
form_type_select_valueincludes/form.incHelper function to determine the value for a select form element.
form_type_textfield_valueincludes/form.incHelper function to determine the value for a textfield form element.
form_type_token_valueincludes/form.incHelper function to determine the value for form's token value.
map_monthincludes/form.incHelper function for usage with drupal_map_assoc to display month names.
password_confirm_validateincludes/form.incValidate password_confirm element.
theme_buttonincludes/form.incTheme a form button.
theme_checkboxincludes/form.incFormat a checkbox.
theme_checkboxesincludes/form.incFormat a set of checkboxes.
theme_dateincludes/form.incFormat a date selection element.
theme_fieldsetincludes/form.incFormat a group of form items.
theme_fileincludes/form.incFormat a file upload field.
theme_formincludes/form.incFormat a form.
theme_form_elementincludes/form.incReturn a themed form element.
theme_hiddenincludes/form.incFormat a hidden form field.
theme_image_buttonincludes/form.incTheme a form image button.
theme_itemincludes/form.incFormat a form item.
theme_passwordincludes/form.incFormat a password field.
theme_password_confirmincludes/form.incFormat a password_confirm item.
theme_radioincludes/form.incFormat a radio button.
theme_radiosincludes/form.incFormat a set of radio buttons.
theme_selectincludes/form.incFormat a dropdown menu or scrolling selection box.
theme_submitincludes/form.incTheme a form submit button.
theme_textareaincludes/form.incFormat a textarea.
theme_textfieldincludes/form.incFormat a textfield.
theme_tokenincludes/form.incFormat a form token.
weight_valueincludes/form.incIf no default value is set for weight select boxes, use 0.
_element_infoincludes/form.incRetrieve the default properties for the defined element type.
_form_builder_handle_input_elementincludes/form.incPopulate the #value and #name properties of input elements so they can be processed and rendered. Also, execute any #process handlers attached to a specific element.
_form_builder_ie_cleanupincludes/form.incIn IE, if only one submit button is present, AND the enter key is used to submit the form, no form value is sent for it and our normal button detection code will never detect a match. We call this function after all other button-detection is complete...
_form_button_was_clickedincludes/form.incHelper function to handle the sometimes-convoluted logic of button click detection.
_form_set_classincludes/form.incSets a form element's class attribute.
_form_set_valueincludes/form.incHelper function for form_set_value().
_form_validateincludes/form.incPerforms validation on form elements. First ensures required fields are completed, #maxlength is not exceeded, and selected options were in the list of options given to the user. Then calls user-defined validators.

|2011-2026-版权声明|平台(网站)公约|DOOOOR 设计网 ( 吉ICP备2022003869号 )

GMT+8, 2-12-2025 19:01 , Processed in 5.547420 second(s), 41 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表