You are here

function _option_cfs_anonymoushomepage in Node and Comments Form Settings 6.2

Same name and namespace in other branches
  1. 6.3 commentformsettings/includes/option_cfs_anonymoushomepage.inc \_option_cfs_anonymoushomepage()
  2. 7.3 commentformsettings/includes/option_cfs_anonymoushomepage.inc \_option_cfs_anonymoushomepage()
  3. 7.2 commentformsettings/includes/option_cfs_anonymoushomepage.inc \_option_cfs_anonymoushomepage()

Hide the Revision log field

File

commentformsettings/includes/option_cfs_anonymoushomepage.inc, line 6

Code

function _option_cfs_anonymoushomepage(&$form, &$form_state, $settings, $node) {
  if ($settings['cfs_anonymoushomepage'] == 1) {
    unset($form['homepage']);
  }
  return $form;
}