You are here

function cctags_theme in cctags 8

Same name and namespace in other branches
  1. 6 cctags.module \cctags_theme()
  2. 7 cctags.module \cctags_theme()

File

./cctags.module, line 37

Code

function cctags_theme() {
  return array(
    'cctags_block' => array(
      'variables' => array(
        'cctid' => NULL,
        'amount' => 0,
        'extra_class' => '',
        'more_link' => TRUE,
        'content' => NULL,
      ),
    ),
    'cctags_level' => array(
      'variables' => array(
        'terms' => NULL,
        'amount' => 0,
        'page' => 0,
        'mode' => 'mixed',
        'vocname' => 0,
        'out' => 'block',
      ),
      'function' => 'theme_cctags_level',
    ),
    'cctags_term' => array(
      'variables' => array(
        'term' => NULL,
        'mode' => NULL,
      ),
    ),
    'cctags_vocname' => array(
      'variables' => array(
        'vocname' => NULL,
        'vid' => NULL,
        'terms' => 0,
        'mode' => '',
        'is_out' => array(),
      ),
    ),
    'cctags_page' => array(
      'variables' => array(
        'cctid' => NULL,
        'extra_class' => NULL,
        'content' => NULL,
        'pager' => NULL,
        'taxonomy_terms' => NULL,
      ),
    ),
  );
}