option_nfs_submit.inc in Node and Comments Form Settings 7.3
Same filename and directory in other branches
File
includes/option_nfs_submit.incView 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
Name![]() |
Description |
---|---|
_option_nfs_submit | Change the value for the submit button. |