You are here

function _option_cfs_anonymoushomepage in Node and Comments Form Settings 7.2

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

@file Hide the Anonymous comment - homepage field.

File

commentformsettings/includes/option_cfs_anonymoushomepage.inc, line 7
Hide the Anonymous comment - homepage field.

Code

function _option_cfs_anonymoushomepage(&$form, &$form_state, $settings, $node) {
  if (isset($form['author'], $form['author']['homepage']) && $settings['cfs_anonymoushomepage'] == 1) {
    $form['author']['homepage']['#access'] = FALSE;
  }
  return $form;
}