You are here

option_cfs_author.inc in Node and Comments Form Settings 7.3

Hide the Revision log field.

File

commentformsettings/includes/option_cfs_author.inc
View source
<?php

/**
 * @file
 * Hide the Revision log field.
 */
function _option_cfs_author(&$form, &$form_state, $settings, $node) {
  if ($settings['cfs_author'] == 1) {
    unset($form['author']['_author']);
  }
  return $form;
}

Functions

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