You are here

option_nfs_title_create.inc in Node and Comments Form Settings 6.2

File

includes/option_nfs_title_create.inc
View source
<?php

/**
 * Change the page title when creating a node
 */
function _option_nfs_title_create($form, &$form_state, $settings, $node) {
  if (empty($node->nid)) {
    $replace_pairs = array(
      '!node_type' => node_get_types('name', $node),
    );
    $title = strtr($settings['nfs_title_create'], $replace_pairs);
    drupal_set_title(t($title));
  }
  return $form;
}

Functions

Namesort descending Description
_option_nfs_title_create Change the page title when creating a node