You are here

function taxonomy_list_theme in Taxonomy List 6.2

Same name and namespace in other branches
  1. 5.2 taxonomy_list.module \taxonomy_list_theme()
  2. 6 taxonomy_list.module \taxonomy_list_theme()
  3. 7 taxonomy_list.module \taxonomy_list_theme()

Implementation of hook_theme().

File

./taxonomy_list.module, line 62
List all terms in a vocabulary.

Code

function taxonomy_list_theme() {
  return array(
    'taxonomy_list_admin_links' => array(
      'arguments' => array(
        'vids',
      ),
    ),
    'taxonomy_list_vocabulary' => array(
      'arguments' => array(
        'vocabulary',
      ),
    ),
    'taxonomy_list_term' => array(
      'arguments' => array(
        'term',
      ),
    ),
    'taxonomy_list_term_block' => array(
      'arguments' => array(
        'term',
      ),
    ),
    'taxonomy_list_block' => array(
      'arguments' => array(
        'terms',
      ),
    ),
    'taxonomy_list_' => array(
      'arguments' => array(
        'terms',
        'cells_per_row' => 1,
        'list_mode' => 0,
      ),
    ),
    'taxonomy_list_table' => array(
      'arguments' => array(
        'terms',
        'cells_per_row' => 1,
        'list_mode' => 0,
      ),
    ),
    'taxonomy_list_list' => array(
      'arguments' => array(
        'terms',
        'cells_per_row' => 1,
        'list_mode' => 0,
      ),
    ),
    'taxonomy_list_nancy' => array(
      'arguments' => array(
        'terms',
        'cells_per_row' => 1,
        'list_mode' => 0,
      ),
      'template' => 'taxonomy_list_nancy',
    ),
    'taxonomy_list_directory' => array(
      'arguments' => array(
        'terms',
        'cells_per_row' => 1,
        'list_mode' => 0,
      ),
    ),
    'taxonomy_list_directory_node' => array(
      'arguments' => array(
        'node',
        'term',
      ),
    ),
  );
}