You are here

function glossary_theme in Glossary 6

Same name and namespace in other branches
  1. 7 glossary.module \glossary_theme()

Implementation of hook_theme.

File

./glossary.module, line 365
Glossary terms will be automatically marked with links to their descriptions.

Code

function glossary_theme() {
  return array(
    'glossary_search_form' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'glossary_overview_item' => array(
      'arguments' => array(
        'term',
        'show_desc',
        'destination',
      ),
    ),
    'glossary_block_term' => array(
      'arguments' => array(
        'term',
        'link',
      ),
    ),
  );
}