Project

General

Profile

Download (9.04 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_annotations_as_footnotekeys' => array('variables' => array('cdmBase_list' => NULL, 'footnote_list_key' => NULL)),
41
    'cdm_annotation_footnotes' => array('variables' => array('footnoteListKey' => NULL, 'enclosingTag' => 'span')),
42
    'cdm_annotation_content' => array('variables' => array('AnnotationTO' => NULL)),
43
    'cdm_list_of_annotations' => array('variables' => array('annotationElements' => NULL)),
44
    'cdm_footnote_key' => array('variables' => array(
45
        'footnoteKey' => NULL,
46
        'separator' => '',
47
        'highlightable' => TRUE,
48
        'separator_off' => FALSE,
49
    )),
50
    'cdm_footnote' => array('variables' => array('footnoteKey' => NULL, 'footnoteText' => NULL, 'enclosing_tag' => 'span')),
51
    'cdm_footnotes' => array('variables' => array(
52
        'footnoteListKey' => NULL,
53
        'enclosingTag' => 'span',
54
    )),
55
    'cdm_annotations' => array('variables' => array('annotations' => NULL, 'enclosingTag' => 'span')),
56
    'cdm_marker' => array('variables' => array('label' => NULL, 'attributes' => NULL)),
57
    'cdm_pager' => array('variables' => array('pager' => NULL, 'path' => NULL, 'parameters' => NULL)),
58
    'cdm_pager_link' => array('variables' => array(
59
        'text' => NULL,
60
        'linkIndex' => NULL,
61
        'pager' => NULL,
62
        'path' => NULL,
63
        'parameters' => array(),
64
        'attributes' => NULL,
65
    )),
66
    'cdm_back_to_search_result_button' => array('variables' => array()),
67
    'cdm_back_to_image_gallery_button' => array('variables' => array()),
68
    'cdm_print_button' => array('variables' => array()),
69

    
70
    // Themes in cdm_dataportal.descriptions.theme.
71
    'cdm_feature_name' => array('variables' => array('feature_name' => NULL)),
72
    'FeatureTree_hierarchy' => array('variables' => array('FeatureTreeUuid' => NULL)),
73
    'FeatureTree_hierarchy_children' => array('variables' => array('node' => NULL)),
74
    'cdm_descriptionElement_CategoricalData' => array('render element' => 'element'),
75
    'cdm_descriptionElement_TaxonInteraction' => array('render element' => 'element'),
76
    'cdm_descriptionElement_QuantitativeData' => array('render element' => 'element'),
77
    'cdm_common_names' => array('render element' => 'elements', 'variables' => array('feature' => null) ),
78
    'cdm_description_element_image_source' => array('variables' => array(
79
        'image_sources' => NULL,
80
        'asListElement' => NULL,
81
    )),
82
    'cdm_IdentificationKey' => array('variables' => array(
83
        'identificationKey' => NULL,
84
        'doLinkToKeyPage' => TRUE,
85
        'showIdentificationKeyTitle' => TRUE,
86
    )),
87
    'cdm_polytomousKey' => array('variables' => array('polytomousKey' => NULL)),
88
    'cdm_polytomousKey_linkedStyle_subgraph' => array('variables' => array('polytomousKeyNode' => NULL)),
89
    'cdm_poytomousKeyNode_modifyingText' => array('variables' => array('modifyingText' => NULL)),
90
    'cdm_list_IdentificationKeys' => array('variables' => array('type' => NULL, 'taxonUuid' => NULL)),
91
    'cdm_block_IdentificationKeys' => array('variables' => array('taxonUuid' => NULL)),
92
    'cdm_UseDescription' => array('variables' => array('description' => NULL, 'taxonUuid' => NULL)),
93
    'cdm_block_Uses' => array('variables' => array('taxonUuid' => NULL)),
94

    
95
    // Themes in cdm_dataportal.media.theme.
96
    'cdm_media' => array('variables' => array('descriptionElement' => NULL, 'mimeTypePreference' => NULL)),
97
    'cdm_media_mime_application' => array('variables' => array('mediaRepresentation' => NULL, 'feature' => NULL)),
98
    'cdm_media_mime_image' => array('variables' => array('mediaRepresentation' => NULL, 'feature' => NULL)),
99
    'cdm_media_mime_text' => array('variables' => array('mediaRepresentation' => NULL, 'feature' => NULL)),
100
    'cdm_media_caption' => array('variables' => array(
101
        'media' => NULL,
102
        'elements' => array('title', 'description', 'artist', 'location', 'rights'),
103
    )),
104
    'cdm_media_gallerie' => array('variables' => array(
105
        'mediaList' => NULL,
106
        'galleryName' => NULL,
107
        'maxExtend' => 150,
108
        'cols' => 4,
109
        'maxRows' => FALSE,
110
        'captionElements' => array('title'),
111
        'mediaLinkType' => 'LIGHTBOX',
112
        'alternativeMediaUri' => NULL,
113
        'galleryLinkUri' => NULL,
114
        'showCaption' => TRUE,
115
    )),
116
    'cdm_media_gallerie_image' => array('variables' => array(
117
        'mediaRepresentationPart' => NULL,
118
        'maxExtend' => NULL,
119
        'addPassePartout' => FALSE,
120
        'attributes' => NULL,
121
    )),
122
    'cdm_media_gallerie_application' => array('variables' => array(
123
        'mediaRepresentationPart' => NULL,
124
        'maxExtend' => NULL,
125
        'addPassePartout' => FALSE,
126
        'attributes' => NULL,
127
    )),
128
    'cdm_media_gallerie_text' => array('variables' => array(
129
        'mediaRepresentationPart' => NULL,
130
        'maxExtend' => NULL,
131
        'addPassePartout' => FALSE,
132
        'attributes' => NULL,
133
    )),
134
    'cdm_openlayers_image' => array('variables' => array('mediaRepresentationPart' => NULL, 'maxExtend' => NULL)),
135
    // Themes in cdm_dataportal.name.theme.
136
    'cdm_typedesignations' => array('variables' => array('typeDesignations' => array())),
137
    'cdm_nameRelationships' => array('variables' => array('nameRelationships' => NULL, 'skipTypes' => FALSE)),
138
    'cdm_homotypicSynonymLine' => array('variables' => array('taxon' => NULL)),
139
    'cdm_heterotypicSynonymyGroup' => array('variables' => array('homotypicalGroup' => NULL)),
140
    'cdm_homotypicSynonymyGroup' => array('variables' => array(
141
        'synonymList' => NULL,
142
        'accepted_taxon_name_uuid' => NULL,
143
        'prependedSynonyms' => array(),
144
    )),
145
    'get_nameRenderTemplate' => array('variables' => array()),
146
    'get_partDefinition' => array('variables' => array()),
147

    
148
    // Themes in cdm_dataportal.occurrence.theme.
149
    'cdm_specimen' => array('variables' => array('specimenTypeDesignation' => NULL)),
150

    
151
    // Themes in cdm_dataportal.page.theme.
152
    'cdm_specimen_page_title' => array('variables' => array('specimen' => NULL)),
153
    'cdm_taxon_page_title' => array('variables' => array('taxon' => NULL)),
154
    'cdm_name_page_title' => array('variables' => array('taxon_name' => NULL)),
155
    'cdm_taxon_page_synonymy' => array('variables' => array('taxon' => NULL, 'addAcceptedTaxon' => NULL)),
156
    'cdm_reference_page' => array('variables' => array('reference' => NULL)),
157
    'cdm_media_page' => array('variables' => array(
158
        'media' => NULL,
159
        'mediarepresentation_uuid' => FALSE,
160
        'partId' => FALSE,
161
    )),
162
    'cdm_polytomousKey_page' => array('variables' => array('polytomousKey' => NULL)),
163
    'cdm_taxonpage_tab' => array('variables' => array('tabname' => NULL)),
164

    
165
    // Themes in cdm_dataportal.references.theme.
166
    'cdm_reference_pager' => array('variables' => array(
167
        'referencePager' => NULL,
168
        'path' => NULL,
169
        'parameters' => array(),
170
    )),
171
    'cdm_reference' => array('variables' => array(
172
        'reference' => NULL,
173
        'microReference' => NULL,
174
        'doLink' => FALSE,
175
        'referenceStyle' => NULL,
176
    )),
177
    'cdm_OriginalSource' => array('variables' => array('source' => NULL, 'doLink' => TRUE, 'do_link_to_name_used_in_source' => FALSE)),
178

    
179
    // Themes in cdm_dataportal.taxon.theme.
180
    'cdm_search_results' => array('variables' => array(
181
        'pager' => NULL,
182
        'path' => NULL
183
    )),
184
    'cdm_taxonRelationships' => array('variables' => array('taxonRelationships' => NULL, 'focusedTaxon' => NULL)),
185
    'cdm_acceptedFor' => array('variables' => array('acceptedFor' => NULL)),
186
    'cdm_list_of_taxa' => array('variables' => array('records' => NULL, 'freetextSearchResults' => array(), 'show_classification' => FALSE)),
187
    'cdm_taxon_list_thumbnails' => array('variables' => array('taxon' => NULL)),
188

    
189
    // Themes in includes/pre-drupal8.inc
190
    'description_list' => array('variables' => array('items' => array(), 'groups' => array(), 'title' => NULL, 'attributes' => array())),
191
  );
192
}
(9-9/9)