You are here

option_nfs_sticky_display.inc in Node and Comments Form Settings 7.3

File

includes/option_nfs_sticky_display.inc
View source
<?php

/**
 * Hide the sticky at top of list checkbox if available.
 */
function _option_nfs_sticky_display(&$form, &$form_state, $settings, $node) {
  if ($settings['nfs_sticky_display'] == 1) {
    $form['options']['sticky']['#access'] = FALSE;
  }
}

Functions

Namesort descending Description
_option_nfs_sticky_display Hide the sticky at top of list checkbox if available.