You are here

function cctags_theme in cctags 7

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

File

./cctags.module, line 25

Code

function cctags_theme() {
  return array(
    'cctags_settings' => array(
      'render element' => 'form',
      'file' => 'cctags.admin.inc',
    ),
    'cctags_settings_add_item' => array(
      'render element' => 'form',
      'file' => 'cctags.admin.inc',
    ),
    'cctags_settings_edit_item' => array(
      'render element' => 'form',
      'file' => 'cctags.admin.inc',
    ),
    'cctags_settings_item' => array(
      'render element' => 'form',
      'file' => 'cctags.admin.inc',
    ),
    'cctags_more' => array(
      'variables' => array(
        'cctid' => NULL,
      ),
    ),
    'cctags_block' => array(
      'variables' => array(
        'cctid' => NULL,
        'amount' => 0,
        'extra_class' => '',
        'more_link' => TRUE,
      ),
    ),
    'cctags_level' => array(
      'variables' => array(
        'terms' => NULL,
        'amount' => 0,
        'page' => 0,
        'mode' => 'mixed',
        'vocname' => 0,
        'out' => 'block',
      ),
      'file' => 'cctags.page.inc',
    ),
    'cctags_term' => array(
      'variables' => array(
        'term' => NULL,
        'mode' => NULL,
      ),
      'template' => 'cctags-term',
    ),
    'cctags_vocname' => array(
      'variables' => array(
        'vocname' => NULL,
        'vid' => NULL,
        'terms' => 0,
        'mode' => '',
        'is_out' => array(),
      ),
      'template' => 'cctags-vocname',
    ),
    'cctags_page' => array(
      'variables' => array(
        'cctid' => NULL,
        'extra_class' => NULL,
        'content' => NULL,
        'pager' => NULL,
      ),
      'file' => 'cctags.page.inc',
      'template' => 'cctags-page',
    ),
  );
}