Created
February 25, 2014 05:59
-
-
Save flashvnn/9203516 to your computer and use it in GitHub Desktop.
Quick Fix to Disable Bean Revisions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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