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