option_nfs_title_edit.inc in Node and Comments Form Settings 7.3
File
includes/option_nfs_title_edit.inc
View source
<?php
function _option_nfs_title_edit($form, &$form_state, $settings, $node) {
if (!empty($node->nid) && isset($form['#node_edit_form'])) {
$replace_pairs = array(
'!node_title' => $node->title,
'!node_type' => t(node_type_get_name($node)),
);
$title = trim($settings['nfs_title_edit']);
if (trim($title)) {
$title = t(check_plain($title), $replace_pairs);
drupal_set_title($title);
}
}
return $form;
}