function theme_glossify_reference_section in Glossify 6
Same name and namespace in other branches
- 5 glossify.module \theme_glossify_reference_section()
- 6.3 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 103
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;
}