You are here

function content_lock_form_node_handler in Content locking (anti-concurrent editing) 7.3

Node and revision form handler.

1 string reference to 'content_lock_form_node_handler'
content_lock_form_alter in ./content_lock.module
Implements hook_form_alter().

File

includes/content_lock.forms.inc, line 11
content_lock.forms.inc

Code

function content_lock_form_node_handler(&$form, &$form_state, $form_id) {

  // Load module inc file.
  module_load_include('inc', 'content_lock', 'includes/content_lock.node');
  content_lock_node_form_handler($form, $form_state, $form_id);
}