function node_page_title
Same name and namespace in other branches
- 6.x drupal-6.x/modules/node/node.module \node_page_title()
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
3 string references to 'node_page_title'
- drupal-6.bare.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.bare.database.php - Bare installation of Drupal 6.17, for test purposes.
- drupal-6.filled.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.filled.database.php - Filled installation of Drupal 6.17, for test purposes.
- node_menu in drupal-7.x/
modules/ node/ node.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ node/ node.module, line 2207 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Código
function node_page_title($node) {
return $node->title;
}