You are here

function _option_nfs_promote_display in Node and Comments Form Settings 7.3

Hide the promote to front page checkbox if available.

File

includes/option_nfs_promote_display.inc, line 6

Code

function _option_nfs_promote_display(&$form, &$form_state, $settings, $node) {
  if ($settings['nfs_promote_display'] == 1) {
    $form['options']['promote']['#access'] = FALSE;
  }
}