function theme_nd_title_p_link in Node displays 7
Same name and namespace in other branches
- 6.3 nd.module \theme_nd_title_p_link()
- 6 theme/theme.inc \theme_nd_title_p_link()
- 6.2 nd.module \theme_nd_title_p_link()
File
- ./
nd.module, line 485 - Node displays.
Code
function theme_nd_title_p_link($field) {
$field = $field['field'];
return '<p>' . l($field['object']->title, 'node/' . $field['object']->nid) . '</p>';
}