option_cfs_size.inc in Node and Comments Form Settings 7.3
Same filename and directory in other branches
Hide the Revision log field.
File
commentformsettings/includes/option_cfs_size.incView source
<?php
/**
* @file
* 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 | @file Hide the Revision log field. |