function node_page_title

7.x node.module node_page_title($node)
6.x node.module node_page_title($node)

Title callback: Returns the title of the node.

Parameters

$node: The node object.

Return value

An unsanitized string that is the title of the node.

See also

node_menu()

1 string reference to 'node_page_title'
node_menu in drupal-7.x/modules/node/node.module
Implements hook_menu().

File

drupal-7.x/modules/node/node.module, line 2205
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_page_title($node) {
  return $node->title;
}