You are here

function theme_noderelationships_erd_relation in Node Relationships 6

Render a relation in the ERD.

1 theme call to theme_noderelationships_erd_relation()
noderelationships_erd_diagram in ./noderelationships.admin.inc
Build the Entity Relationship Diagram (ERD).

File

./noderelationships.admin.inc, line 204
Implementation of the administration pages of the module.

Code

function theme_noderelationships_erd_relation($label) {
  $output = '<div class="noderelationships-erd-relation"><div class="noderelationships-erd-relation-box">';
  $output .= '<div class="noderelationships-erd-relation-caption"><h2>' . $label . '</h2></div>';
  $output .= '</div></div>' . "\n";
  return $output;
}