You are here

option_cfs_anonymoushomepage.inc in Node and Comments Form Settings 6.2

File

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

/**
 * Hide the Revision log field
 */
function _option_cfs_anonymoushomepage(&$form, &$form_state, $settings, $node) {
  if ($settings['cfs_anonymoushomepage'] == 1) {
    unset($form['homepage']);
  }
  return $form;
}

Functions

Namesort descending Description
_option_cfs_anonymoushomepage Hide the Revision log field