function theme_nd_title_h2_block_nolink in Node displays 7
Same name and namespace in other branches
- 6.3 nd.module \theme_nd_title_h2_block_nolink()
- 6 theme/theme.inc \theme_nd_title_h2_block_nolink()
- 6.2 nd.module \theme_nd_title_h2_block_nolink()
File
- ./
nd.module, line 470 - Node displays.
Code
function theme_nd_title_h2_block_nolink($field) {
$field = $field['field'];
return '<h2 class="block-title">' . check_plain($field['object']->title) . '</h2>';
}