You are here

function lexicon_theme in Lexicon 6

Same name and namespace in other branches
  1. 7 lexicon.module \lexicon_theme()

Implementation of hook_theme().

File

./lexicon.module, line 344
Lexicon is used to create lists of terms and definitions to use on a website and optionally mark them in the content with an indicator.

Code

function lexicon_theme() {
  return array(
    'lexicon_search_form' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'lexicon_overview_item' => array(
      'arguments' => array(
        'vid',
        'term',
        'show_desc',
        'destination',
      ),
    ),
    'lexicon_block_term' => array(
      'arguments' => array(
        'vid',
        'term',
        'link',
      ),
    ),
  );
}