You are here

function theme_nd_title_h1_link in Node displays 7

Same name and namespace in other branches
  1. 6.3 nd.module \theme_nd_title_h1_link()
  2. 6 theme/theme.inc \theme_nd_title_h1_link()
  3. 6.2 nd.module \theme_nd_title_h1_link()

File

./nd.module, line 455
Node displays.

Code

function theme_nd_title_h1_link($field) {
  $field = $field['field'];
  return '<h1>' . l($field['object']->title, 'node/' . $field['object']->nid) . '</h1>';
}