You are here

option_cfs_anonymoushomepage.inc in Node and Comments Form Settings 7.3

Hide the Anonymous comment - homepage field.

File

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

/**
 * @file
 * Hide the Anonymous comment - homepage field.
 */
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;
}

Functions

Namesort descending Description
_option_cfs_anonymoushomepage @file Hide the Anonymous comment - homepage field.