You are here

option_nfs_submit.inc in Node and Comments Form Settings 7.3

File

includes/option_nfs_submit.inc
View source
<?php

/**
 * Change the value for the submit button.
 */
function _option_nfs_submit(&$form, &$form_state, $settings, $node) {
  if (!empty($settings['nfs_submit'])) {
    $title = trim($settings['nfs_submit']);
    $form['actions']['submit']['#value'] = t(check_plain($title));
  }
  return $form;
}

Functions

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