function theme_noderelationships_erd_current in Node Relationships 6
Render the current entity in the ERD.
1 theme call to theme_noderelationships_erd_current()
- noderelationships_erd_diagram in ./
noderelationships.admin.inc - Build the Entity Relationship Diagram (ERD).
File
- ./
noderelationships.admin.inc, line 165 - Implementation of the administration pages of the module.
Code
function theme_noderelationships_erd_current($label, $items = NULL) {
$output = '<div class="noderelationships-erd-current">';
$output .= theme('noderelationships_erd_entity', $label, $items);
$output .= '</div>' . "\n";
return $output;
}