function glossary_theme in Glossary 7
Same name and namespace in other branches
- 6 glossary.module \glossary_theme()
Implements hook_theme().
File
- ./
glossary.module, line 250 - Glossary terms will be automatically marked with links to their descriptions.
Code
function glossary_theme() {
return array(
'glossary_search_form' => array(
'variables' => array(
'form',
),
),
'glossary_overview_item' => array(
'variables' => array(
'term',
'show_desc',
'destination',
),
),
'glossary_block_term' => array(
'variables' => array(
'term',
'link',
),
),
);
}