function entityconnect_include_form in Entity connect 7.2
Same name and namespace in other branches
- 7 entityconnect.module \entityconnect_include_form()
Include the form inc file.
This can be used in #submit array before the sumbit functions which are located in the inc file.
2 calls to entityconnect_include_form()
- entityconnect_field_attach_form in ./
entityconnect.module - Implements hook_field_attach_form().
- entityconnect_form_alter in ./
entityconnect.module - Implements hook_form_alter().
3 string references to 'entityconnect_include_form'
- entityconnect_add_form_element_edit in includes/
entityconnect.form.inc - Here we attach a "Edit" submit button.
- entityconnect_add_form_element_new in includes/
entityconnect.form.inc - Here we attach a "Add" submit button.
- entityconnect_child_form_alter in includes/
entityconnect.form.inc - Alters child create form.
File
- ./
entityconnect.module, line 130 - Handles the main hooks used by entityconnect.
Code
function entityconnect_include_form() {
module_load_include("inc", "entityconnect", "includes/entityconnect.form");
}