function _noderelationships_child_node_form_submit_proxy in Node Relationships 6
Proxy function to invoke the submit handler for the child node form.
2 string references to '_noderelationships_child_node_form_submit_proxy'
- _noderelationships_child_edit_form_alter in ./
noderelationships.pages.inc - Alter edit child node form.
- _noderelationships_child_node_form_alter in ./
noderelationships.pages.inc - Alter create child node form.
File
- ./
noderelationships.module, line 478 - This is the main script for the noderelationships module. It merely contains the implementation of hooks invoked by Drupal core, CCK, Views, etc. All common functions are externalized into several scripts that are included on demand.
Code
function _noderelationships_child_node_form_submit_proxy($form, &$form_state) {
module_load_include('inc', 'noderelationships');
module_load_include('inc', 'noderelationships', 'noderelationships.pages');
_noderelationships_child_node_form_submit($form, $form_state);
}