You are here

option_cfs_anonymousname.inc in Node and Comments Form Settings 7.2

Hide the Anonymous comment - name field.

File

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

/**
 * @file
 * Hide the Anonymous comment - name field.
 */
function _option_cfs_anonymousname(&$form, &$form_state, $settings, $node) {
  if (isset($form['author'], $form['author']['name']) && $settings['cfs_anonymousname'] == 1) {
    $form['author']['name']['#access'] = FALSE;
  }
  return $form;
}

Functions

Namesort descending Description
_option_cfs_anonymousname @file Hide the Anonymous comment - name field.