option_nfs_comments.inc in Node and Comments Form Settings 7.3
Same filename and directory in other branches
File
includes/option_nfs_comments.incView source
<?php
/**
* Hide comments settings vertical tab.
*/
function _option_nfs_comments(&$form, &$form_state, $settings, $node) {
if ($settings['nfs_comments'] == 1) {
$form['comment_settings']['#access'] = FALSE;
}
return $form;
}
Functions
Name![]() |
Description |
---|---|
_option_nfs_comments | Hide comments settings vertical tab. |