| block_example_block | developer/examples/block_example.module | Implementation of hook_block(). |
| block_example_contents | developer/examples/block_example.module | A block content function. |
| example_element_demo | developer/examples/example_element.module | This is a simple form to demonstrate how to use the phonenumber form
element we defined. |
| example_element_elements | developer/examples/example_element.module | Implementation of hook_elements(). |
| example_element_expand | developer/examples/example_element.module | Our process callback to expand the control. |
| example_element_menu | developer/examples/example_element.module | Implementation of hook_menu(). |
| example_element_validate | developer/examples/example_element.module | Our element's validation function. |
| filter_example_filter | developer/examples/filter_example.module | Implementation of hook_filter(). |
| filter_example_filter_tips | developer/examples/filter_example.module | Implementation of hook_filter_tips(). |
| multipage_form_example_access | developer/examples/multipage_form_example.module | Implementation of hook_access(). |
| multipage_form_example_custom_submit | developer/examples/multipage_form_example.module | |
| multipage_form_example_custom_validate | developer/examples/multipage_form_example.module | Validate our form. |
| multipage_form_example_delete | developer/examples/multipage_form_example.module | Implementation of hook_delete(). |
| multipage_form_example_elements | developer/examples/multipage_form_example.module | Playing around here with a new form element to enable storing hidden values in an array fashion.
Seems to work fine. Check out $form['test_hidden_array'] above for how to structure the form
element |
| multipage_form_example_form | developer/examples/multipage_form_example.module | Implementation of hook_form() for multipage_form_example. We don't set ANY
#required attributes here - we leave that up to multipage_form_example_pre_render(). |
| multipage_form_example_form_alter | developer/examples/multipage_form_example.module | Implementation of hook_form_alter(). Here, we set up the 'page' field,
which keeps track of what stage the form is in. |
| multipage_form_example_help | developer/examples/multipage_form_example.module | Implementation of hook_help(). |
| multipage_form_example_load | developer/examples/multipage_form_example.module | Implementation of hook_load(). |
| multipage_form_example_menu | developer/examples/multipage_form_example.module | Implementation of hook_menu(). |
| multipage_form_example_node_info | developer/examples/multipage_form_example.module | Implementation of hook_node_info(). |
| 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… |
| multipage_form_example_view | developer/examples/multipage_form_example.module | Implementation of hook_view(). |
| nodeapi_example_form_alter | developer/examples/nodeapi_example.module | Implementation of hook_form_alter(). |
| nodeapi_example_install | developer/examples/nodeapi_example.install | Implementation of hook_install(). |
| nodeapi_example_nodeapi | developer/examples/nodeapi_example.module | Implementation of hook_nodeapi(). |
| nodeapi_example_uninstall | developer/examples/nodeapi_example.install | Implementation of hook_uninstall(). |
| nodeapi_example_update_1 | developer/examples/nodeapi_example.install | |
| node_access_example_disable | developer/examples/node_access_example.install | Implementation of hook_disable(). |
| node_access_example_disabling | developer/examples/node_access_example.module | Simple function to make sure we don't respond with grants when disabling
ourselves. |
| node_access_example_enable | developer/examples/node_access_example.install | Implementation of hook_enable(). |