Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Created February 25, 2014 05:59
Show Gist options
  • Save flashvnn/9203516 to your computer and use it in GitHub Desktop.
Save flashvnn/9203516 to your computer and use it in GitHub Desktop.
Quick Fix to Disable Bean Revisions
<?php
function MYMODULE_form_bean_form_alter(&$form, &$form_state) {
// Hide the revision checkbox.
$form['revision']['is_new_revision']['#type'] = 'hidden';
// Make "Create new revision" off by default
$form['revision']['is_new_revision']['#default_value'] = 0;
// Hide the revision log field.
$form['revision']['log']['#type'] = 'hidden';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment