You are here

function drafty_enforce_form_node_form_alter in Drafty 7

Implements hook_form_FORM_ID_alter().

File

modules/drafty_enforce/drafty_enforce.module, line 33
Hook implementations and API functions for Drafty Enforce module.

Code

function drafty_enforce_form_node_form_alter(&$form, &$form_state) {

  // Since we always force revisions, don't bother showing the option.
  $form['revision_information']['revision']['#access'] = FALSE;
}