option_cfs_inputformat.inc in Node and Comments Form Settings 7.3
Same filename and directory in other branches
Hide the Revision log field.
File
commentformsettings/includes/option_cfs_inputformat.incView source
<?php
/**
* @file
* Hide the Revision log field.
*/
function _option_cfs_inputformat(&$form, &$form_state, $settings, $node) {
if ($settings['cfs_inputformat'] == 1) {
$format = filter_default_format();
$form['comment_body'][LANGUAGE_NONE][0]['#format'] = $format;
$form['comment_body'][LANGUAGE_NONE][0]['format'] = array(
'access' => FALSE,
);
}
return $form;
}
Functions
Name![]() |
Description |
---|---|
_option_cfs_inputformat | @file Hide the Revision log field. |