option_cfs_anonymousname.inc in Node and Comments Form Settings 7.3
Hide the Anonymous comment - name field.
File
commentformsettings/includes/option_cfs_anonymousname.incView 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
Name![]() |
Description |
---|---|
_option_cfs_anonymousname | @file Hide the Anonymous comment - name field. |