You are here

function theme_noderelationships_admin_help in Node Relationships 6

Render a help block.

3 theme calls to theme_noderelationships_admin_help()
noderelationships_admin_settings_backref in ./noderelationships.admin.inc
Back reference settings form.
noderelationships_admin_settings_noderef in ./noderelationships.admin.inc
Node reference extras form.
noderelationships_erd_diagram in ./noderelationships.admin.inc
Build the Entity Relationship Diagram (ERD).

File

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

Code

function theme_noderelationships_admin_help($message) {
  return '<div class="help">' . $message . '</div>';
}