You are here

option_nfs_author_information.inc in Node and Comments Form Settings 7.2

File

includes/option_nfs_author_information.inc
View source
<?php

/**
 * Change the value for the submit button.
 *
 * There's no if here.
 */
function _option_nfs_author_information(&$form, &$form_state, $settings, $node) {
  if ($settings['nfs_author_information'] == 1) {
    $form['author']['#access'] = FALSE;
  }
  return $form;
}

Functions

Namesort descending Description
_option_nfs_author_information Change the value for the submit button.