You are here

option_nfs_promote_display.inc in Node and Comments Form Settings 7.3

File

includes/option_nfs_promote_display.inc
View source
<?php

/**
 * Hide the promote to front page checkbox if available.
 */
function _option_nfs_promote_display(&$form, &$form_state, $settings, $node) {
  if ($settings['nfs_promote_display'] == 1) {
    $form['options']['promote']['#access'] = FALSE;
  }
}

Functions

Namesort descending Description
_option_nfs_promote_display Hide the promote to front page checkbox if available.