You are here

option_cfs_size.inc in Node and Comments Form Settings 7.2

Hide the Revision log field.

File

commentformsettings/includes/option_cfs_size.inc
View 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

Namesort descending Description
_option_cfs_size @file Hide the Revision log field.