You are here

function _noderelationships_parent_node_form_scanner_proxy in Node Relationships 6

Proxy function to invoke node form after_build and pre_render callbacks, because the file where the real handler is implemented might not be included yet when the form is processed and invokes the callback.

1 string reference to '_noderelationships_parent_node_form_scanner_proxy'
_noderelationships_parent_node_form_alter in ./noderelationships.pages.inc
Alter parent node form to attach extra buttons to node reference fields.

File

./noderelationships.module, line 460
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_parent_node_form_scanner_proxy($form) {
  module_load_include('inc', 'noderelationships');
  module_load_include('inc', 'noderelationships', 'noderelationships.pages');
  return _noderelationships_parent_node_form_scanner($form);
}