option_cfs_preview.inc in Node and Comments Form Settings 7.2
Same filename and directory in other branches
Hide the Revision log field.
File
commentformsettings/includes/option_cfs_preview.incView source
<?php
/**
* @file
* Hide the Revision log field.
*/
function _option_cfs_preview(&$form, &$form_state, $settings, $node) {
if ($settings['cfs_preview'] == 1) {
unset($form['preview']);
}
return $form;
}
Functions
Name![]() |
Description |
---|---|
_option_cfs_preview | @file Hide the Revision log field. |