function node_type_page_title

Title callback: Returns the unsanitized title of the node type edit form.

Parameters

$type: The node type object.

Return value

string An unsanitized string that is the title of the node type edit form.

See also

node_menu()

1 string reference to 'node_type_page_title'
node_menu in drupal/modules/node/node.module
Implements hook_menu().

File

drupal/modules/node/node.module, line 2184
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

function node_type_page_title($type) {
  return $type->name;
}