You are here

function theme_glossify_reference_section in Glossify 5

Same name and namespace in other branches
  1. 6.3 glossify.module \theme_glossify_reference_section()
  2. 6 glossify.module \theme_glossify_reference_section()
1 theme call to theme_glossify_reference_section()
glossify_nodeapi in ./glossify.module

File

./glossify.module, line 164

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><!-- glossify-reference -->';
  return $output;
}