You are here

function theme_glossify_reference_section in Glossify 6.3

Same name and namespace in other branches
  1. 5 glossify.module \theme_glossify_reference_section()
  2. 6 glossify.module \theme_glossify_reference_section()

Render a glossary term reference.

1 theme call to theme_glossify_reference_section()
glossify_nodeapi in ./glossify.module
Implementation of hook_nodeapi().

File

./glossify.module, line 111

Code

function theme_glossify_reference_section($term_definition_list) {
  $output = '<div id="glossify-reference">';
  $output .= '<h3>Terms referenced:</h3>';
  $output .= '<dl>';
  $output .= $term_definition_list;
  $output .= '</dl>';
  $output .= '</div>';
  return $output;
}