| 6 node.module | node_page_title($node) |
| 7 node.module | node_page_title($node) |
| 8 node.module | node_page_title(Node $node) |
Title callback.
1 string reference to 'node_page_title'
File
- modules/
node/ node.module, line 2106 - 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;
}
Login or register to post comments