You are here

function _noderelationships_child_node_form_pre_render_proxy in Node Relationships 6

Proxy function to invoke the pre_render callback for the child node form.

2 string references to '_noderelationships_child_node_form_pre_render_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 469
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_pre_render_proxy($form) {
  module_load_include('inc', 'noderelationships');
  module_load_include('inc', 'noderelationships', 'noderelationships.pages');
  return _noderelationships_child_node_form_pre_render($form);
}