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