option_cfs_author.inc in Node and Comments Form Settings 7.2
Same filename and directory in other branches
Hide the Revision log field.
File
commentformsettings/includes/option_cfs_author.incView source
<?php
/**
* @file
* Hide the Revision log field.
*/
function _option_cfs_author(&$form, &$form_state, $settings, $node) {
if ($settings['cfs_author'] == 1) {
unset($form['author']['_author']);
}
return $form;
}
Functions
Name![]() |
Description |
---|---|
_option_cfs_author | @file Hide the Revision log field. |