function theme_noderelationships_backref_view in Node Relationships 6
Render a block for a back reference view.
1 theme call to theme_noderelationships_backref_view()
- noderelationships_backref_render_view in ./
noderelationships.pages.inc - Display a back reference view.
File
- ./
noderelationships.pages.inc, line 201 - Implementation of user land pages.
Code
function theme_noderelationships_backref_view($title, $content) {
$output = '<dl class="noderelationships-backref-view">';
if (!empty($title)) {
$output .= '<dt>' . $title . '</dt>';
}
$output .= '<dd>' . $content . '</dd>';
$output .= '</dl>';
return $output;
}