Project

General

Profile

Download (4.67 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/**
3
 * @file
4
 * Only contains the hook_theme() implementation.
5
 *
6
 * @copyright
7
 *   (C) 2007-2012 EDIT
8
 *   European Distributed Institute of Taxonomy
9
 *   http://www.e-taxonomy.eu
10
 *
11
 *   The contents of this module are subject to the Mozilla
12
 *   Public License Version 1.1.
13
 * @see http://www.mozilla.org/MPL/MPL-1.1.html
14
 *
15
 * @author
16
 *   - Andreas Kohlbecker <a.kohlbecker@BGBM.org>
17
 */
18

    
19
/**
20
 * Implements hook_theme().
21
 *
22
 * Registering themes with a theme hook is needed since Drupal 6.
23
 *
24
 * @author W. Addink <w.addink@eti.uva.nl>
25
 */
26
function cdm_dataportal_theme() {
27
  return array(
28
    // Themes in help.php.
29
    'cdm_dataportal_admin_config_cdm_dataportal_general' => array('variables' => array()),
30
    'cdm_dataportal_admin_config_cdm_dataportal_geo' => array('variables' => array()),
31
    'cdm_dataportal_admin_config_cdm_dataportal_layout' => array('variables' => array()),
32
    'cdm_dataportal_admin_config_cdm_dataportal_cachesite' => array('variables' => array()),
33
    'cdm_dataportal_admin_config_more_help_link' => array('variables' => array()),
34

    
35
    // Themes in settings.php.
36
    'checkboxes_preferred' => array('render element' => 'element'),
37
    'radio_options_suffix' => array('render element' => 'element'),
38

    
39
    // Themes in cdm_dataportal.common.theme.
40
    'cdm_marker' => array('variables' => array('label' => NULL, 'attributes' => NULL)),
41
    'cdm_pager' => array('variables' => array('pager' => NULL, 'path' => NULL, 'parameters' => NULL)),
42
    'cdm_pager_link' => array('variables' => array(
43
        'text' => NULL,
44
        'linkIndex' => NULL,
45
        'pager' => NULL,
46
        'path' => NULL,
47
        'parameters' => array(),
48
        'attributes' => NULL,
49
    )),
50
    'cdm_print_button' => array('variables' => array()),
51

    
52
    // Themes in cdm_dataportal.descriptions.theme.
53
    'cdm_feature_name' => array('variables' => array('feature_name' => NULL)),
54
    'cdm_IdentificationKey' => array('variables' => array(
55
        'identificationKey' => NULL,
56
        'doLinkToKeyPage' => TRUE,
57
        'showIdentificationKeyTitle' => TRUE,
58
    )),
59
    'cdm_polytomousKey' => array('variables' => array('polytomousKey' => NULL)),
60
    'cdm_polytomousKey_linkedStyle_subgraph' => array('variables' => array('polytomousKeyNode' => NULL)),
61
    'cdm_poytomousKeyNode_modifyingText' => array('variables' => array('modifyingText' => NULL)),
62
    'cdm_list_IdentificationKeys' => array('variables' => array('type' => NULL, 'taxonUuid' => NULL)),
63
    'cdm_block_IdentificationKeys' => array('variables' => array('taxonUuid' => NULL)),
64

    
65
    // Themes in cdm_dataportal.media.theme.
66
    'cdm_media_mime_application' => array('variables' => array('mediaRepresentation' => NULL, 'feature' => NULL)),
67
    'cdm_media_mime_image' => array('variables' => array('mediaRepresentation' => NULL, 'feature' => NULL)),
68
    'cdm_media_mime_text' => array('variables' => array('mediaRepresentation' => NULL, 'feature' => NULL)),
69
    'cdm_media_caption' => array('variables' => array(
70
        'media' => NULL,
71
        'elements' => array('title', 'description', 'artist', 'location', 'rights'),
72
        'sources_as_content' => FALSE
73
    )),
74
    // Themes in cdm_dataportal.name.theme.
75
    'cdm_nameRelationships' => array('variables' => array('nameRelationships' => NULL, 'skipTypes' => FALSE)),
76
    'cdm_homotypicSynonymLine' => array('variables' => array('taxon' => NULL)),
77
    'cdm_heterotypicSynonymyGroup' => array('variables' => array('homotypicalGroup' => NULL)),
78
    'cdm_homotypicSynonymyGroup' => array('variables' => array(
79
        'synonymList' => NULL,
80
        'accepted_taxon_name_uuid' => NULL,
81
        'prependedSynonyms' => array(),
82
    )),
83
    'get_nameRenderTemplate' => array('variables' => array()),
84
    'get_partDefinition' => array('variables' => array()),
85

    
86
    // Themes in cdm_dataportal.page.theme.
87
    'cdm_taxon_page_title' => array('variables' => array('taxon' => NULL)),
88
    'cdm_name_page_title' => array('variables' => array('taxon_name' => NULL)),
89
    'cdm_media_page' => array('variables' => array(
90
        'media' => NULL,
91
        'mediarepresentation_uuid' => FALSE,
92
        'partId' => FALSE,
93
    )),
94
    'cdm_polytomousKey_page' => array('variables' => array('polytomousKey' => NULL)),
95

    
96
    // Themes in cdm_dataportal.taxon.theme.
97
    'cdm_search_taxa_results' => array('variables' => array(
98
        'pager' => NULL,
99
        'path' => NULL
100
    )),
101
    'cdm_search_specimen_results' => array('variables' => array(
102
        'pager' => NULL,
103
        'path' => NULL
104
    )),
105
    'cdm_taxon_list_thumbnails' => array('variables' => array('taxon' => NULL)),
106

    
107
    // Themes in includes/pre-drupal8.inc
108
    'description_list' => array('variables' => array('items' => array(), 'groups' => array(), 'title' => NULL, 'attributes' => array())),
109
  );
110
}
(9-9/9)