| blogapi_blogger_edit_post | modules/blogapi/blogapi.module | Blogging API callback. Modifies the specified blog node. |
| blogapi_blogger_new_post | modules/blogapi/blogapi.module | Blogging API callback. Inserts a new blog post as a node. |
| comment_save | modules/comment/comment.module | Accepts a submission of new or changed comment content. |
| drupal_get_form | includes/form.inc | Retrieves a form from a builder function, passes it on for
processing, and renders the form or redirects to its destination
as appropriate. In multi-step form scenarios, it handles properly
processing the values using the previous step's form... |
| drupal_process_form | includes/form.inc | This function is the heart of form API. The form gets built, validated and in
appropriate cases, submitted. |
| form_get_errors | includes/form.inc | Return an associative array of all errors. |
| install_verify_settings | install.php | Verify existing settings.php |
| multipage_form_example_pre_render | developer/examples/multipage_form_example.module | The #pre_render of a form allows us to make changes AFTER validation (unlike
hook_form_alter()), but BEFORE the form has actually been displayed. We use
it to control which form elements are shown, which are hidden, and which values
to set based on... |
| node_preview | modules/node/node.module | Generate a node preview. |
| system_settings_form | modules/system/system.module | Add default buttons to a form and set its prefix |