option_cfs_size.inc in Node and Comments Form Settings 6.3
Same filename and directory in other branches
File
commentformsettings/includes/option_cfs_size.incView source
<?php
/**
* Hide the Revision log field
*/
function _option_cfs_size(&$form, &$form_state, $settings, $node) {
if ($settings['cfs_size'] == 1) {
$form['cfs_filter']['comment']['#rows'] = $settings['cfs_size'];
}
return $form;
}
Functions
Name![]() |
Description |
---|---|
_option_cfs_size | Hide the Revision log field |