1
|
<?php
|
2
|
/**
|
3
|
* @file
|
4
|
* Functions for dealing with CDM entities from the package model.name
|
5
|
*
|
6
|
* @copyright
|
7
|
* (C) 2007-2015 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
|
* @defgroup compose Compose functions
|
21
|
* @{
|
22
|
* Functions which are composing Drupal render arays
|
23
|
*
|
24
|
* The cdm_dataportal module needs to compose rather complex render arrays from
|
25
|
* the data returned by the CDM REST service. The compose functions are
|
26
|
* responsible for creating the render arrays.
|
27
|
*
|
28
|
* All these functions are also implementations of the compose_hook()
|
29
|
* which is used in the proxy_content() function.
|
30
|
* @}
|
31
|
*/
|
32
|
|
33
|
|
34
|
/**
|
35
|
* Provides the name render template to be used within the page elements identified the the $renderPath.
|
36
|
*
|
37
|
* The render templates arrays contains one or more name render templates to be used within the page elements identified the the
|
38
|
* renderPath. The renderPath is the key of the subelements whereas the value is the name render template.
|
39
|
*
|
40
|
* The render paths used for a cdm_dataportal page can be visualized by supplying the HTTP query parameter RENDER_PATH=1.
|
41
|
*
|
42
|
* It will be tried to find the best matching default RenderTemplate by stripping the dot separated render path
|
43
|
* element by element. If no matching template is found the DEFAULT will be used:
|
44
|
*
|
45
|
* - related_taxon.heterotypicSynonymyGroup.taxon_page_synonymy
|
46
|
* - related_taxon.heterotypicSynonymyGroup.taxon_page_synonymy
|
47
|
* - related_taxon.heterotypicSynonymyGroup.taxon_page_synonymy
|
48
|
*
|
49
|
* A single render template can be used for multiple render paths. In this case the according key of the render templates
|
50
|
* array element should be the list of these render paths concatenated by ONLY a comma character without any whitespace.
|
51
|
*
|
52
|
* A render template is an associative array. The keys of this array are referring to the keys as defined in the part
|
53
|
* definitions array.
|
54
|
* @see get_partDefinition($taxonNameType) for more information
|
55
|
*
|
56
|
* The value of the render template element must be set to TRUE in order to let this part being rendered.
|
57
|
* The namePart, nameAuthorPart and referencePart can also hold an associative array with a single
|
58
|
* element: array('#uri' => TRUE). The value of the #uri element will be replaced by the according
|
59
|
* links if the parameters $nameLink or $refenceLink are set.
|
60
|
*
|
61
|
* @param string $render_path
|
62
|
* The render path can consist of multiple dot separated elements
|
63
|
* @see RenderHints::getRenderPath()
|
64
|
* @param string $nameLink
|
65
|
* The link path or URL to be used for name parts if a link is forseen in the template
|
66
|
* matching the given $renderPath.
|
67
|
* @param string $referenceLink
|
68
|
* The link path ot URL to be used for nomenclatural reference parts if a link is forseen
|
69
|
* in the template matching the given $renderPath.
|
70
|
* @return array
|
71
|
* An associative array, the render template
|
72
|
*/
|
73
|
function get_nameRenderTemplate($render_path, $nameLink = NULL, $referenceLink = NULL) {
|
74
|
|
75
|
static $default_render_templates = NULL;
|
76
|
static $split_render_templates = NULL;
|
77
|
|
78
|
|
79
|
if (!isset($default_render_templates)) {
|
80
|
$default_render_templates = unserialize(CDM_NAME_RENDER_TEMPLATES_DEFAULT);
|
81
|
}
|
82
|
if($split_render_templates == NULL) {
|
83
|
$render_templates = variable_get(CDM_NAME_RENDER_TEMPLATES, $default_render_templates);
|
84
|
// needs to be converted to an array
|
85
|
$render_templates = (object_to_array($render_templates));
|
86
|
|
87
|
// separate render templates which are combined with a comma
|
88
|
$split_render_templates = array();
|
89
|
foreach($render_templates as $key => $template){
|
90
|
if(strpos($key, ',')){
|
91
|
foreach(explode(',', $key) as $path){
|
92
|
$split_render_templates[$path] = $template;
|
93
|
}
|
94
|
} else {
|
95
|
$split_render_templates[$key] = $template;
|
96
|
}
|
97
|
}
|
98
|
}
|
99
|
|
100
|
// get the base element of the renderPath
|
101
|
if (($separatorPos = strpos($render_path, '.')) > 0) {
|
102
|
$renderPath_base = substr($render_path, 0, $separatorPos);
|
103
|
} else {
|
104
|
$renderPath_base = $render_path;
|
105
|
}
|
106
|
|
107
|
$template = NULL;
|
108
|
// 1. try to find a template using the render path base element
|
109
|
if(array_key_exists($renderPath_base, $split_render_templates)){
|
110
|
$template = (array)$split_render_templates[$renderPath_base];
|
111
|
}
|
112
|
|
113
|
// 2. Find best matching default RenderTemplate
|
114
|
// by stripping the dot separated render path element by element
|
115
|
// if no matching template is found the DEFAULT will be used.
|
116
|
while (!is_array($template) && strlen($render_path) > 0) {
|
117
|
foreach ($split_render_templates as $path => $t) {
|
118
|
if ($path == $render_path) {
|
119
|
$template = $t;
|
120
|
break;
|
121
|
}
|
122
|
}
|
123
|
// shorten by one element
|
124
|
$render_path = substr($render_path, strrpos($render_path, '.') + 1, strlen($render_path));
|
125
|
}
|
126
|
|
127
|
|
128
|
// 3. Otherwise get default RenderTemplate from theme.
|
129
|
if (!is_array($template)) {
|
130
|
$template = $split_render_templates['#DEFAULT'];
|
131
|
}
|
132
|
|
133
|
// --- set the link uris to the according template fields if they exist
|
134
|
if(isset($template['nameAuthorPart']) && isset($template['nameAuthorPart']['#uri'])) {
|
135
|
if ($nameLink) {
|
136
|
$template['nameAuthorPart']['#uri'] = $nameLink;
|
137
|
}
|
138
|
else {
|
139
|
unset($template['nameAuthorPart']['#uri']);
|
140
|
}
|
141
|
}
|
142
|
|
143
|
if ($nameLink && isset($template['namePart']['#uri'])) {
|
144
|
$template['namePart']['#uri'] = $nameLink;
|
145
|
}
|
146
|
else {
|
147
|
unset($template['namePart']['#uri']);
|
148
|
}
|
149
|
|
150
|
if ($referenceLink && isset($template['referencePart']['#uri'])) {
|
151
|
$template['referencePart']['#uri'] = $referenceLink;
|
152
|
}
|
153
|
else {
|
154
|
unset($template['referencePart']['#uri']);
|
155
|
}
|
156
|
|
157
|
return $template;
|
158
|
}
|
159
|
|
160
|
/**
|
161
|
* The part definitions define the specific parts of which a rendered taxon name plus additional information will consist.
|
162
|
*
|
163
|
* A full taxon name plus additional information can consist of the following elements:
|
164
|
*
|
165
|
* - name: the taxon name inclugin rank nbut without author
|
166
|
* - authorTeam: The authors of a reference, also used in taxon names
|
167
|
* - authors: The authors of a reference, also used in taxon names
|
168
|
* - reference: the nomenclatural reference,
|
169
|
* - microreference: Volume, page number etc.
|
170
|
* - status: The nomenclatural status of a name
|
171
|
* - description: name descriptions like protologues etc ...
|
172
|
*
|
173
|
* These elements are combined in the part definitions array to from the specific parts to be rendered.
|
174
|
* Usually the following parts are formed:
|
175
|
*
|
176
|
* The name "Lapsana communis L., Sp. Pl.: 811. 1753" shall be an example here:
|
177
|
* - namePart: the name and rank (in example: "Lapsana communis")
|
178
|
* - authorshipPart: the author (in example: "L.")
|
179
|
* - nameAuthorPart: the combination of name and author part (in example: "Lapsana communis L.").
|
180
|
* This is useful for zoological names where the authorshipPart belongs to the name and both should
|
181
|
* be combined when a link to the taxon is rendered.
|
182
|
* - referencePart: the nomencaltural reference (in example: "Sp. Pl. 1753")
|
183
|
* - microreferencePart: usually the page number (in example ": 811.")
|
184
|
* - statusPart: the nomenclatorical status
|
185
|
* - descriptionPart:
|
186
|
*
|
187
|
* Each set of parts is dedicated to render a specific TaxonName type, the type names are used as keys for the
|
188
|
* specific parts part definitions:
|
189
|
*
|
190
|
* - BotanicalName
|
191
|
* - ZoologicalName
|
192
|
* - #DEFAULT: covers ViralNames and general NonViralNames
|
193
|
*
|
194
|
* An example:
|
195
|
* @code
|
196
|
* array(
|
197
|
* 'ZoologicalName' => array(
|
198
|
* 'namePart' => array('name' => TRUE),
|
199
|
* 'referencePart' => array('authorTeam' => TRUE),
|
200
|
* 'microreferencePart' => array('microreference' => TRUE),
|
201
|
* 'statusPart' => array('status' => TRUE),
|
202
|
* 'descriptionPart' => array('description' => TRUE),
|
203
|
* ),
|
204
|
* 'BotanicalName' => array(
|
205
|
* 'namePart' => array(
|
206
|
* 'name' => TRUE,
|
207
|
* 'authors' => TRUE,
|
208
|
* ),
|
209
|
* 'referencePart' => array(
|
210
|
* 'reference' => TRUE,
|
211
|
* 'microreference' => TRUE,
|
212
|
* ),
|
213
|
* 'statusPart' => array('status' => TRUE),
|
214
|
* 'descriptionPart' => array('description' => TRUE),
|
215
|
* ),
|
216
|
* );
|
217
|
* @endcode
|
218
|
*
|
219
|
* @param object $taxonNameType
|
220
|
* A cdm TaxonNameType entity
|
221
|
*
|
222
|
*/
|
223
|
function get_partDefinition($taxonNameType) {
|
224
|
|
225
|
static $default_part_definitions = null;
|
226
|
if (!isset($default_part_definitions)) {
|
227
|
$default_part_definitions= unserialize(CDM_PART_DEFINITIONS_DEFAULT);
|
228
|
}
|
229
|
|
230
|
static $part_definitions = null;
|
231
|
if (!isset($part_definitions)) {
|
232
|
$part_definitions = object_to_array(variable_get(CDM_PART_DEFINITIONS, $default_part_definitions));
|
233
|
}
|
234
|
|
235
|
$dtype = nameTypeToDTYPE($taxonNameType);
|
236
|
if (array_key_exists($taxonNameType, $part_definitions)) {
|
237
|
return $part_definitions[$taxonNameType];
|
238
|
} else if (array_key_exists($dtype, $part_definitions)) {
|
239
|
return $part_definitions[$dtype];
|
240
|
} else {
|
241
|
return $part_definitions['#DEFAULT']; // covers ViralNames and general NonViralNames
|
242
|
}
|
243
|
|
244
|
}
|
245
|
|
246
|
|
247
|
/**
|
248
|
* Renders the markup for a CDM TaxonName instance.
|
249
|
*
|
250
|
* The layout of the name representation is configured by the
|
251
|
* part_definitions and render_templates (see get_partDefinition() and
|
252
|
* get_nameRenderTemplate())
|
253
|
*
|
254
|
* @param $taxonName
|
255
|
* cdm TaxonName instance
|
256
|
* @param $name_link
|
257
|
* URI to the taxon, @see path_to_taxon(), must be processed by url() before passing to this method
|
258
|
* @param $reference_link
|
259
|
* URI to the reference, @see path_to_reference(), must be processed by url() before passing to this method
|
260
|
* @param $show_annotations
|
261
|
* turns the display of annotations on
|
262
|
* @param $is_type_designation
|
263
|
* To indicate that the supplied taxon name is a name type designation.
|
264
|
* @param $skiptags
|
265
|
* an array of name elements tags like 'name', 'rank' to skip. The name part
|
266
|
* 'authors' will not ber affected by this filter. This part is managed though the render template
|
267
|
* mechanism.
|
268
|
* @param $is_invalid
|
269
|
* Indicates that this taxon is invalid. In this case the name part will be shown in double quotes.
|
270
|
* This is useful when rendering taxon relation ships.
|
271
|
*
|
272
|
* @return string
|
273
|
* The markup for a taxon name.
|
274
|
*
|
275
|
*/
|
276
|
function render_taxon_or_name($taxon_name_or_taxon_base, $name_link = NULL, $reference_link = NULL,
|
277
|
$show_annotations = true, $is_type_designation = false, $skiptags = array(), $is_invalid = false) {
|
278
|
|
279
|
$is_doubtful = false;
|
280
|
|
281
|
if($taxon_name_or_taxon_base->class == 'Taxon' || $taxon_name_or_taxon_base->class == 'Synonym'){
|
282
|
if(isset($taxon_name_or_taxon_base->name)){
|
283
|
$taxonName = $taxon_name_or_taxon_base->name;
|
284
|
} else {
|
285
|
$taxonName = cdm_ws_get(CDM_WS_TAXON . '/$0/name', array($taxon_name_or_taxon_base->uuid));
|
286
|
}
|
287
|
$is_doubtful = $taxon_name_or_taxon_base->doubtful;
|
288
|
// use the TaxonBase.tagged_title so we have the secRef
|
289
|
$tagged_title = $taxon_name_or_taxon_base->taggedTitle;
|
290
|
} else {
|
291
|
// assuming this is a TaxonName
|
292
|
$taxonName = $taxon_name_or_taxon_base;
|
293
|
if(isset($taxonName->taggedFullTitle)){
|
294
|
$tagged_title = $taxon_name_or_taxon_base->taggedFullTitle;
|
295
|
} else {
|
296
|
$tagged_title = $taxon_name_or_taxon_base->taggedName;
|
297
|
}
|
298
|
}
|
299
|
|
300
|
|
301
|
$renderTemplate = get_nameRenderTemplate(RenderHints::getRenderPath(), $name_link, $reference_link);
|
302
|
$partDefinition = get_partDefinition($taxonName->nameType);
|
303
|
|
304
|
// Apply definitions to template.
|
305
|
foreach ($renderTemplate as $part => $uri) {
|
306
|
|
307
|
if (isset($partDefinition[$part])) {
|
308
|
$renderTemplate[$part] = $partDefinition[$part];
|
309
|
}
|
310
|
if (is_array($uri) && isset($uri['#uri'])) {
|
311
|
$renderTemplate[$part]['#uri'] = $uri['#uri'];
|
312
|
}
|
313
|
}
|
314
|
|
315
|
$secref_tagged_text = tagged_text_extract_reference_and_detail($tagged_title);
|
316
|
// taxon names will have the nomenclatural reference in the tagged full title:
|
317
|
$nomref_tagged_text = tagged_text_extract_reference($tagged_title);
|
318
|
$nom_status_tagged_text = tagged_text_extract_nomstatus($tagged_title);
|
319
|
$appended_phrase_tagged_text = array(); // this is filled later
|
320
|
|
321
|
normalize_tagged_text($tagged_title);
|
322
|
|
323
|
$is_valid_tagged_title =
|
324
|
isset($tagged_title)
|
325
|
&& is_array($tagged_title)
|
326
|
&& isset($tagged_title[0]->text)
|
327
|
&& is_string($tagged_title[0]->text)
|
328
|
&& $tagged_title[0]->text != ''
|
329
|
&& isset($tagged_title[0]->type);
|
330
|
$lastAuthorElementString = FALSE;
|
331
|
|
332
|
$name_encasement = $is_invalid ? '"' : '';
|
333
|
$doubtful_marker = $is_doubtful ? '? ' : ''; //   = NARROW NO-BREAK SPACE
|
334
|
$doubtful_marker_markup = '';
|
335
|
|
336
|
if($doubtful_marker){
|
337
|
$doubtful_marker_markup = '<span class="doubtful">' . $doubtful_marker . '</span>';
|
338
|
if($tagged_title[0]->text == '?' ){
|
339
|
// remove the first tagged text element
|
340
|
unset($tagged_title[0]);
|
341
|
}
|
342
|
}
|
343
|
|
344
|
// split off all appendedPhrase item from the end of the array (usually there only should be one)
|
345
|
while($tagged_title[count($tagged_title)-1]->type == "appendedPhrase"){
|
346
|
$appended_phrase_tagged_text[] = array_pop($tagged_title);
|
347
|
}
|
348
|
|
349
|
// Got to use second entry as first one, see ToDo comment below ...
|
350
|
if ($is_valid_tagged_title) {
|
351
|
|
352
|
$taggedName = $tagged_title;
|
353
|
$hasNamePart_with_Authors = isset($renderTemplate['namePart']) && isset($renderTemplate['namePart']['authors']);
|
354
|
$hasNameAuthorPart_with_Authors = isset($renderTemplate['nameAuthorPart']) && isset($renderTemplate['nameAuthorPart']['authors']);
|
355
|
|
356
|
|
357
|
if (!(($hasNamePart_with_Authors) || ($hasNameAuthorPart_with_Authors))) {
|
358
|
// Find author and split off from name.
|
359
|
// TODO expecting to find the author as the last element.
|
360
|
/*
|
361
|
if($taggedName[count($taggedName)- 1]->type == 'authors'){
|
362
|
$authorTeam = $taggedName[count($taggedName)- 1]->text;
|
363
|
unset($taggedName[count($taggedName)- 1]);
|
364
|
}
|
365
|
*/
|
366
|
|
367
|
// Remove all authors.
|
368
|
$taggedNameNew = array();
|
369
|
foreach ($taggedName as $element) {
|
370
|
if ($element->type != 'authors') {
|
371
|
$taggedNameNew[] = $element;
|
372
|
}
|
373
|
else {
|
374
|
$lastAuthorElementString = $element->text;
|
375
|
}
|
376
|
}
|
377
|
$taggedName = $taggedNameNew;
|
378
|
unset($taggedNameNew);
|
379
|
}
|
380
|
$name = '<span class="' . $taxonName->class . '">' . $doubtful_marker_markup . $name_encasement . cdm_tagged_text_to_markup($taggedName, $skiptags) . $name_encasement . '</span>';
|
381
|
}
|
382
|
else {
|
383
|
// use titleCache instead
|
384
|
$name = '<span class="' . $taxonName->class . '_titleCache">' . $doubtful_marker_markup . $name_encasement . $taxonName->titleCache . $name_encasement . '</span>';
|
385
|
}
|
386
|
|
387
|
|
388
|
if(isset($appended_phrase_tagged_text[0])){
|
389
|
$name .= ' <span class="appended-phrase">'. cdm_tagged_text_to_markup($appended_phrase_tagged_text) . '</span>';
|
390
|
}
|
391
|
|
392
|
// Fill name into $renderTemplate.
|
393
|
array_setr('name', $name , $renderTemplate);
|
394
|
|
395
|
// Fill with authorTeam.
|
396
|
/*
|
397
|
if($authorTeam){
|
398
|
$authorTeamHtml = ' <span class="authorTeam">'.$authorTeam.'</span>';
|
399
|
array_setr('authorTeam', $authorTeamHtml, $renderTemplate);
|
400
|
}
|
401
|
*/
|
402
|
|
403
|
// Fill with reference.
|
404
|
if (isset($renderTemplate['referencePart']) && !$is_type_designation) {
|
405
|
|
406
|
$registrations = cdm_ws_get(CDM_WS_NAME, array($taxonName->uuid, "registrations"));
|
407
|
$registration_markup = render_registrations($registrations);
|
408
|
|
409
|
// default separator
|
410
|
$separator = '';
|
411
|
|
412
|
// [Eckhard]:"Komma nach dem Taxonnamen ist grunsätzlich falsch,
|
413
|
// Komma nach dem Autornamen ist überall dort falsch, wo ein "in" folgt."
|
414
|
if (isset($renderTemplate['referencePart']['reference'])) {
|
415
|
$microreference = NULL;
|
416
|
if (isset($renderTemplate['referencePart']['microreference'])&& isset($taxonName->nomenclaturalMicroReference)) {
|
417
|
$microreference = $taxonName->nomenclaturalMicroReference;
|
418
|
}
|
419
|
if(count($nomref_tagged_text) == 0 && isset($taxonName->nomenclaturalReference)){
|
420
|
// TODO is this case still relevant? The tagged text should already contain all information!
|
421
|
$citation = cdm_ws_getNomenclaturalReference($taxonName->nomenclaturalReference->uuid, $microreference);
|
422
|
// Find preceding element of the reference.
|
423
|
$precedingKey = get_preceding_contentElementKey('reference', $renderTemplate);
|
424
|
if (str_beginsWith($citation, ", in")) {
|
425
|
$citation = substr($citation, 2);
|
426
|
$separator = ' ';
|
427
|
}
|
428
|
elseif (!str_beginsWith($citation, "in") && $precedingKey == 'authors') {
|
429
|
$separator = ', ';
|
430
|
} else {
|
431
|
$separator = ' ';
|
432
|
}
|
433
|
$referenceArray['#separator'] = $separator;
|
434
|
$referenceArray['#html'] = '<span class="reference">' . $citation . '</span>' . $registration_markup;
|
435
|
} else {
|
436
|
// this ist the case for taxon names
|
437
|
$referenceArray['#html'] = cdm_tagged_text_to_markup($nomref_tagged_text);
|
438
|
}
|
439
|
|
440
|
|
441
|
array_setr('reference', $referenceArray, $renderTemplate);
|
442
|
}
|
443
|
|
444
|
// If authors have been removed from the name part the last named authorteam
|
445
|
// should be added to the reference citation, otherwise, keep the separator
|
446
|
// out of the reference.
|
447
|
if (isset($renderTemplate['referencePart']['authors']) && $lastAuthorElementString) {
|
448
|
// If the nomenclaturalReference citation is not included in the
|
449
|
// reference part but display of the microreference
|
450
|
// is wanted, append the microreference to the authorTeam.
|
451
|
$citation = '';
|
452
|
if (!isset($renderTemplate['referencePart']['reference']) && isset($renderTemplate['referencePart']['microreference'])) {
|
453
|
$separator = ": ";
|
454
|
$citation = $taxonName->nomenclaturalMicroReference;
|
455
|
}
|
456
|
$referenceArray['#html'] = ' <span class="reference">' . $lastAuthorElementString . $separator . $citation . '</span>';
|
457
|
array_setr('authors', $referenceArray, $renderTemplate);
|
458
|
}
|
459
|
}
|
460
|
|
461
|
$is_reference_year = false;
|
462
|
if (isset($renderTemplate['referenceYearPart']['reference.year'])) {
|
463
|
if(isset($taxonName->nomenclaturalReference->datePublished)){
|
464
|
$referenceArray['#html'] = ' <span class="reference">' . timePeriodToString($taxonName->nomenclaturalReference->datePublished) . '</span>';
|
465
|
array_setr('reference.year', $referenceArray, $renderTemplate);
|
466
|
$is_reference_year = true;
|
467
|
}
|
468
|
}
|
469
|
|
470
|
// Fill with status.
|
471
|
if(isset($renderTemplate['statusPart']['status'])){
|
472
|
if (isset($nom_status_tagged_text[0])) {
|
473
|
$tt_to_markup_options = array('html' => false);
|
474
|
foreach ($nom_status_tagged_text as &$tt){
|
475
|
if($tt->type == 'nomStatus'&& isset($tt->entityReference)) {
|
476
|
$nom_status = cdm_ws_get(CDM_WS_NOMENCLATURALSTATUS, array($tt->entityReference->uuid));
|
477
|
$nom_status_fkey = nomenclatural_status_footnote_markup($nom_status);
|
478
|
$tt->text .= $nom_status_fkey;
|
479
|
$tt_to_markup_options['html'] = true;
|
480
|
}
|
481
|
}
|
482
|
array_setr(
|
483
|
'status',
|
484
|
'<span class="nomenclatural_status">' . cdm_tagged_text_to_markup($nom_status_tagged_text, array('postSeparator'), 'span', $tt_to_markup_options) . '</span>',
|
485
|
$renderTemplate);
|
486
|
}
|
487
|
}
|
488
|
|
489
|
if (isset($renderTemplate['secReferencePart'])){
|
490
|
if(isset($secref_tagged_text[1])){
|
491
|
$post_separator_markup = $is_reference_year ? '.': '';
|
492
|
if(isset($nom_status_tagged_text[count($nom_status_tagged_text) - 1]) && ($nom_status_tagged_text[count($nom_status_tagged_text) - 1]->type == 'postSeparator')){
|
493
|
$post_separator_markup = cdm_tagged_text_to_markup(array($nom_status_tagged_text[count($nom_status_tagged_text) - 1 ]));
|
494
|
};
|
495
|
array_setr('secReference',
|
496
|
$post_separator_markup
|
497
|
. ' <span class="sec_reference">'
|
498
|
. join('', cdm_tagged_text_values($secref_tagged_text))
|
499
|
. '</span>', $renderTemplate);
|
500
|
}
|
501
|
}
|
502
|
|
503
|
// Fill with protologues etc...
|
504
|
$descriptionHtml = '';
|
505
|
if (array_setr('description', TRUE, $renderTemplate)) {
|
506
|
$descriptions = cdm_ws_get(CDM_WS_PORTAL_NAME_DESCRIPTIONS, $taxonName->uuid);
|
507
|
if($descriptions){
|
508
|
foreach ($descriptions as $description) {
|
509
|
if (!empty($description)) {
|
510
|
foreach ($description->elements as $description_element) {
|
511
|
$second_citation = '';
|
512
|
if (isset($description_element->multilanguageText_L10n) && $description_element->multilanguageText_L10n->text) {
|
513
|
if(isset($description_element->feature) && $description_element->feature->uuid == UUID_ADDITIONAL_PUBLICATION){
|
514
|
$prefix = '& ';
|
515
|
} else {
|
516
|
$prefix = '';
|
517
|
}
|
518
|
$second_citation = ' [' . $prefix . $description_element->multilanguageText_L10n->text . '].';
|
519
|
}
|
520
|
$descriptionHtml .= $second_citation;
|
521
|
$descriptionHtml .= cdm_description_element_media(
|
522
|
$description_element,
|
523
|
array(
|
524
|
'application/pdf',
|
525
|
'image/png',
|
526
|
'image/jpeg',
|
527
|
'image/gif',
|
528
|
'text/html',
|
529
|
)
|
530
|
);
|
531
|
|
532
|
}
|
533
|
}
|
534
|
}
|
535
|
}
|
536
|
array_setr('description', $descriptionHtml, $renderTemplate);
|
537
|
}
|
538
|
|
539
|
// Render.
|
540
|
$out = '';
|
541
|
if(isset($_REQUEST['RENDER_PATH'])){
|
542
|
// developer option to show the render path with each taxon name
|
543
|
$out .= '<span class="render-path">' . RenderHints::getRenderPath() . '</span>';
|
544
|
}
|
545
|
$out .= '<span class="' . html_class_attribute_ref($taxon_name_or_taxon_base)
|
546
|
. '" data-cdm-ref="/name/' . $taxonName->uuid . '" data-cdm-render-path="' . RenderHints::getRenderPath() .'">';
|
547
|
|
548
|
foreach ($renderTemplate as $partName => $part) {
|
549
|
$separator = '';
|
550
|
$partHtml = '';
|
551
|
$uri = FALSE;
|
552
|
if (!is_array($part)) {
|
553
|
continue;
|
554
|
}
|
555
|
if (isset($part['#uri']) && is_string($part['#uri'])) {
|
556
|
$uri = $part['#uri'];
|
557
|
unset($part['#uri']);
|
558
|
}
|
559
|
foreach ($part as $key => $content) {
|
560
|
$html = '';
|
561
|
if (is_array($content)) {
|
562
|
$html = $content['#html'];
|
563
|
if(isset($content['#separator'])) {
|
564
|
$separator = $content['#separator'];
|
565
|
}
|
566
|
}
|
567
|
elseif (is_string($content)) {
|
568
|
$html = $content;
|
569
|
}
|
570
|
$partHtml .= '<span class="' . $key . '">' . $html . '</span>';
|
571
|
}
|
572
|
if ($uri) {
|
573
|
// cannot use l() here since the #uri aleady should have been processed through uri() at this point
|
574
|
$out .= $separator . '<a href="' . $uri . '" class="' . $partName . '">' . $partHtml . '</a>';
|
575
|
|
576
|
}
|
577
|
else {
|
578
|
$out .= $separator . $partHtml;
|
579
|
}
|
580
|
}
|
581
|
$out .= '</span>';
|
582
|
if ($show_annotations) {
|
583
|
// $out .= theme('cdm_annotations_as_footnotekeys', $taxonName);
|
584
|
}
|
585
|
return $out;
|
586
|
}
|
587
|
|
588
|
|
589
|
|
590
|
/**
|
591
|
* Composes information for a registration from a dto object.
|
592
|
*
|
593
|
* Registrations which are not yet published are suppressed.
|
594
|
*
|
595
|
* @param $registration_dto
|
596
|
* @param $with_citation
|
597
|
* Whether to show the citation.
|
598
|
*
|
599
|
* @return array
|
600
|
* A drupal render array with the elements:
|
601
|
* - 'name'
|
602
|
* - 'name-relations'
|
603
|
* - 'specimen_type_designations'
|
604
|
* - 'name_type_designations'
|
605
|
* - 'citation'
|
606
|
* - 'registration_date_and_institute'
|
607
|
* @ingroup compose
|
608
|
*/
|
609
|
function compose_registration_dto_full($registration_dto, $with_citation = true)
|
610
|
{
|
611
|
$render_array = array(
|
612
|
'#prefix' => '<div class="registration">',
|
613
|
'#suffix' => '</div>'
|
614
|
);
|
615
|
|
616
|
if(!(isset($registration_dto->identifier) && $registration_dto->status == 'PUBLISHED')){
|
617
|
return $render_array;
|
618
|
}
|
619
|
|
620
|
$render_array['sub_headline'] = markup_to_render_array(join(", ", registration_types($registration_dto)),-10, '<h3 class="registration_type">' . t('Event: '), '</h3>' );
|
621
|
$render_array['nomenclatural_act'] = array(
|
622
|
'#weight' => 0,
|
623
|
'#prefix' => '<div class="nomenclatural_act">',
|
624
|
|
625
|
'#suffix' => '</div>'
|
626
|
);
|
627
|
|
628
|
// name
|
629
|
if($registration_dto->nameRef){
|
630
|
$name = cdm_ws_get(CDM_WS_PORTAL_NAME, $registration_dto->nameRef->uuid);
|
631
|
cdm_load_tagged_full_title($name);
|
632
|
$render_array['nomenclatural_act']['published_name'] = markup_to_render_array('<div class="published-name">' . render_taxon_or_name($name, url(path_to_name($name->uuid))) . '</div>', 0);
|
633
|
$name_relations = cdm_ws_fetch_all(str_replace("$0", $registration_dto->nameRef->uuid, CDM_WS_PORTAL_NAME_NAME_RELATIONS));
|
634
|
$render_array['nomenclatural_act']['name_relations'] = compose_name_relationships_list($name_relations, $registration_dto->nameRef->uuid, null);
|
635
|
$render_array['nomenclatural_act']['name_relations']['#weight'] = 10;
|
636
|
} else {
|
637
|
// in this case the registration must have a
|
638
|
$name = cdm_ws_get(CDM_WS_PORTAL_NAME, $registration_dto->typifiedNameRef->uuid);
|
639
|
$render_array['typified_name'] = markup_to_render_array('<p class="typified-name">for ' . render_taxon_or_name($name, url(path_to_name($name->uuid))) . '</p>', 40);
|
640
|
}
|
641
|
// typedesignation in detail
|
642
|
if(is_object($registration_dto->orderdTypeDesignationWorkingSets)) {
|
643
|
$field_unit_uuids = array();
|
644
|
$specimen_type_designation_refs = array();
|
645
|
$name_type_designation_refs = array();
|
646
|
foreach ((array)$registration_dto->orderdTypeDesignationWorkingSets as $workingset_ref => $obj) {
|
647
|
$tokens = explode("#", $workingset_ref);
|
648
|
$types_in_fieldunit = get_object_vars($obj); // convert into associative array
|
649
|
|
650
|
if ($tokens[0] == 'NameTypeDesignation') {
|
651
|
foreach ($types_in_fieldunit as $type_status => $entity_reference_list) {
|
652
|
if(!isset($name_type_designation_refs[$type_status])){
|
653
|
$name_type_designation_refs[$type_status] = $entity_reference_list;
|
654
|
} else {
|
655
|
array_push($name_type_designation_refs[$type_status] ,$entity_reference_list);
|
656
|
}
|
657
|
}
|
658
|
} else if ($tokens[0] == 'FieldUnit'){
|
659
|
$field_unit_uuids[] = $tokens[1];
|
660
|
foreach ($types_in_fieldunit as $type_status => $entity_reference_list) {
|
661
|
if(!isset($specimen_type_designation_refs[$type_status])){
|
662
|
$specimen_type_designation_refs[$type_status] = $entity_reference_list;
|
663
|
} else {
|
664
|
array_push($specimen_type_designation_refs[$type_status], $entity_reference_list);
|
665
|
}
|
666
|
}
|
667
|
} else {
|
668
|
drupal_set_message("Unimplemented type: " . $tokens[0], 'error');
|
669
|
}
|
670
|
}
|
671
|
// type designations wich are in this nomenclatural act.
|
672
|
if (count($name_type_designation_refs) > 0) {
|
673
|
$render_array['nomenclatural_act']['name_type_designations'] = compose_name_type_designations($name_type_designation_refs);
|
674
|
$render_array['nomenclatural_act']['name_type_designations']['#prefix'] = '<p class="name_type_designations">';
|
675
|
$render_array['nomenclatural_act']['name_type_designations']['#suffix'] = '</p>';
|
676
|
$render_array['nomenclatural_act']['name_type_designations']['#weight'] = 20;
|
677
|
}
|
678
|
if (count($field_unit_uuids) > 0) {
|
679
|
$specimen_type_designations_array = compose_specimen_type_designations($specimen_type_designation_refs, true);
|
680
|
$render_array['nomenclatural_act']['specimen_type_designations'] = $specimen_type_designations_array['type_designations'];
|
681
|
$render_array['map'] = $specimen_type_designations_array['map'];
|
682
|
$render_array['map']['#weight'] = $render_array['nomenclatural_act']['#weight'] + 20;
|
683
|
}
|
684
|
}
|
685
|
|
686
|
// citation
|
687
|
if ($with_citation) {
|
688
|
$render_array['citation'] = markup_to_render_array(
|
689
|
"<div class=\"citation nomenclatural_act_citation" . html_class_attribute_ref(new TypedEntityReference("Reference", $registration_dto->citationUuid)) . "\">"
|
690
|
. "<span class=\"label\">published in: </span>"
|
691
|
. $registration_dto->bibliographicInRefCitationString
|
692
|
. l(custom_icon_font_markup('icon-interal-link-alt-solid', array('class' => array('superscript'))), path_to_reference($registration_dto->citationUuid), array('html' => true))
|
693
|
. "</div>",
|
694
|
$render_array['nomenclatural_act']['#weight'] + 10 );
|
695
|
}
|
696
|
|
697
|
// registration date and office
|
698
|
$registration_date_insitute_markup = render_registration_date_and_institute($registration_dto);
|
699
|
if($registration_date_insitute_markup){
|
700
|
$render_array['registration_date_and_institute'] = markup_to_render_array(
|
701
|
$registration_date_insitute_markup . '</p>',
|
702
|
100);
|
703
|
}
|
704
|
|
705
|
return $render_array;
|
706
|
}
|
707
|
|
708
|
|
709
|
/**
|
710
|
* Composes a compact representation for a registrationDTO object
|
711
|
*
|
712
|
* Registrations which are not yet published are suppressed.
|
713
|
*
|
714
|
* @param $registration_dto
|
715
|
* @param $style string
|
716
|
* The style of how to compose the 'identifier' and 'registration_date_and_institute' part with the summary
|
717
|
* - 'citation': Similar to the arrearance of nomenclatural acts in print media
|
718
|
* - 'list-item' : style suitable for result lists etc
|
719
|
*
|
720
|
* @return array
|
721
|
* A drupal render array with the elements:
|
722
|
* - 'registration-metadata' when $style == 'list-item'
|
723
|
* - 'summary'
|
724
|
* @ingroup compose
|
725
|
*/
|
726
|
function compose_registration_dto_compact($registration_dto, $style = 'citation', $tag_enclosing_summary = 'p')
|
727
|
{
|
728
|
$render_array = array();
|
729
|
$media_link_map = array();
|
730
|
|
731
|
if(!(isset($registration_dto->identifier) && $registration_dto->status == 'PUBLISHED')){
|
732
|
return $render_array;
|
733
|
}
|
734
|
|
735
|
$registration_date_insitute_markup = render_registration_date_and_institute($registration_dto, 'span');
|
736
|
$itentifier_markup = l($registration_dto->identifier, path_to_registration($registration_dto->identifier), array('attributes' => array('class' => array('identifier'))));
|
737
|
|
738
|
$tagged_text_options = array();
|
739
|
if(isset($registration_dto->nameRef)){
|
740
|
$tagged_text_options[] = array(
|
741
|
'filter-type' => 'name',
|
742
|
'prefix' => '<span class="registered_name">',
|
743
|
'suffix' => '</span>',
|
744
|
);
|
745
|
} else {
|
746
|
$tagged_text_options[] = array(
|
747
|
'filter-type' => 'name',
|
748
|
'prefix' => '<span class="referenced_typified_name">',
|
749
|
'suffix' => '</span>',
|
750
|
);
|
751
|
}
|
752
|
cdm_tagged_text_add_options($registration_dto->summaryTaggedText, $tagged_text_options);
|
753
|
$taggged_text_expanded = cdm_tagged_text_expand_entity_references($registration_dto->summaryTaggedText);
|
754
|
foreach ($taggged_text_expanded as $tagged_text){
|
755
|
if(isset($tagged_text->entityReference->type) && $tagged_text->entityReference->type == 'SpecimenTypeDesignation') {
|
756
|
$mediaDTOs = cdm_ws_get('typedesignation/$0/media', array($tagged_text->entityReference->uuid));
|
757
|
if(isset($mediaDTOs[0]->uri)){
|
758
|
$media_url_key = '{link-' . $mediaDTOs[0]->uuid . '}';
|
759
|
$tagged_text->text = str_replace('[icon]', '[icon]' . $media_url_key, $tagged_text->text);
|
760
|
$media_link_map[$media_url_key] = cdm_external_uri($mediaDTOs[0]->uri, true);
|
761
|
}
|
762
|
}
|
763
|
}
|
764
|
$registation_markup = cdm_tagged_text_to_markup($taggged_text_expanded);
|
765
|
foreach($media_link_map as $media_url_key => $link){
|
766
|
$registation_markup = str_replace($media_url_key, $link, $registation_markup);
|
767
|
}
|
768
|
if($style == 'citation') {
|
769
|
$registation_markup = $registation_markup . ' ' . $itentifier_markup . ' ' . $registration_date_insitute_markup;
|
770
|
} else {
|
771
|
$render_array['registration-metadata'] = markup_to_render_array('<div class="registration-metadata">' . $itentifier_markup . ' ' . $registration_date_insitute_markup. "</div>", -10);
|
772
|
}
|
773
|
$render_array['summary'] = markup_to_render_array('<' . $tag_enclosing_summary . ' class="registration-summary">' . $registation_markup . '</' . $tag_enclosing_summary . '>', 0);
|
774
|
|
775
|
return $render_array;
|
776
|
}
|
777
|
|
778
|
|
779
|
/**
|
780
|
* Renders the registrationDate and institutionTitleCache of the $registration_dto as markup.
|
781
|
*
|
782
|
* @param $registration_dto
|
783
|
* @return string
|
784
|
* The markup or an empty string
|
785
|
*/
|
786
|
function render_registration_date_and_institute($registration_dto, $enclosing_tag = 'p') {
|
787
|
$registration_date_institute_markup = '';
|
788
|
if ($registration_dto->registrationDate) {
|
789
|
$date_string = format_datetime($registration_dto->registrationDate);
|
790
|
if (isset($registration_dto->institutionTitleCache) && $registration_dto->institutionTitleCache) {
|
791
|
$registration_date_institute_markup =
|
792
|
t("Registration on @date in @institution", array(
|
793
|
'@date' => $date_string,
|
794
|
'@institution' => $registration_dto->institutionTitleCache,
|
795
|
));
|
796
|
} else {
|
797
|
$registration_date_institute_markup =
|
798
|
t("Registration on @date", array(
|
799
|
'@date' => $date_string
|
800
|
));
|
801
|
}
|
802
|
$registration_date_institute_markup = '<' .$enclosing_tag . ' class="registration-date-and-institute">'. $registration_date_institute_markup . '</' .$enclosing_tag . '>';
|
803
|
}
|
804
|
return $registration_date_institute_markup;
|
805
|
}
|
806
|
|
807
|
|
808
|
/**
|
809
|
* @param $registrations
|
810
|
* @return string
|
811
|
*/
|
812
|
function render_registrations($registrations)
|
813
|
{
|
814
|
$registration_markup = '';
|
815
|
$registration_markup_array = array();
|
816
|
if ($registrations) {
|
817
|
foreach ($registrations as $reg) {
|
818
|
$registration_markup_array[] = render_registration($reg);
|
819
|
}
|
820
|
$registration_markup = " Registration" . (count($registration_markup_array) > 1 ? 's: ' : ': ')
|
821
|
. join(', ', $registration_markup_array);
|
822
|
}
|
823
|
return $registration_markup;
|
824
|
}
|
825
|
|
826
|
|
827
|
/**
|
828
|
* Renders a registration
|
829
|
*
|
830
|
* TODO replace by compose_registration_dto_compact
|
831
|
* @param $registration
|
832
|
*/
|
833
|
function render_registration($registration){
|
834
|
$markup = '';
|
835
|
|
836
|
if(isset($registration->identifier) && $registration->status == 'PUBLISHED'){
|
837
|
$office_class_attribute = '';
|
838
|
if(isset($registration->institution->titleCache)){
|
839
|
$office_class_attribute = registration_intitute_class_attribute($registration);
|
840
|
}
|
841
|
$markup = "<span class=\"registration $office_class_attribute\">" . l($registration->identifier, path_to_registration($registration->identifier)) . ', '
|
842
|
. preg_replace('/^([^T]*)(.*)$/', '${1}', $registration->registrationDate)
|
843
|
. '</span>';
|
844
|
}
|
845
|
return $markup;
|
846
|
}
|
847
|
|
848
|
/**
|
849
|
* @param $registration
|
850
|
* @return string
|
851
|
*/
|
852
|
function registration_intitute_class_attribute($registration_dto)
|
853
|
{
|
854
|
if(isset($registration_dto->institutionTitleCache)){
|
855
|
$institutionTitleCache = $registration_dto->institutionTitleCache;
|
856
|
} else {
|
857
|
// fall back option to also support cdm entities
|
858
|
$institutionTitleCache = @$registration_dto->institution->titleCache;
|
859
|
}
|
860
|
return $institutionTitleCache ? 'registration-' . strtolower(preg_replace('/[^a-zA-Z0-9]/', '-', $institutionTitleCache)) : '';
|
861
|
}
|
862
|
|
863
|
|
864
|
/**
|
865
|
* Renders and array of CDM TypeDesignations
|
866
|
*
|
867
|
* @param object $type_designations an array of cdm TypeDesignation entities
|
868
|
* to render
|
869
|
* @param string $enclosing_tag the tag element type to enclose the whole list
|
870
|
* of type designation with. By default this DOM element is <ul>
|
871
|
* @param string $element_tag the tag element type to be used for each
|
872
|
* type designation item.
|
873
|
* @param bool $link_to_specimen_page whether a specimen in type designation element
|
874
|
* should be a link or not.
|
875
|
*
|
876
|
* @return string The markup.
|
877
|
*
|
878
|
* @InGroup Render
|
879
|
*/
|
880
|
function render_type_designations($type_designations, $enclosing_tag = 'ul', $element_tag = 'li', $link_to_specimen_page = true) {
|
881
|
|
882
|
// need to add element to render path since type designations
|
883
|
// need other name render template
|
884
|
RenderHints::pushToRenderStack('typedesignations');
|
885
|
|
886
|
$out = '<' . $enclosing_tag .' class="typeDesignations">';
|
887
|
$specimen_type_designations = array();
|
888
|
$name_type_designations = array();
|
889
|
$textual_type_designations = array();
|
890
|
$separator = ',';
|
891
|
|
892
|
foreach ($type_designations as $type_designation) {
|
893
|
switch ($type_designation->class) {
|
894
|
case 'SpecimenTypeDesignation':
|
895
|
$specimen_type_designations[] = $type_designation;
|
896
|
break;
|
897
|
case 'NameTypeDesignation':
|
898
|
$name_type_designations[] = $type_designation;
|
899
|
break;
|
900
|
case 'TextualTypeDesignation':
|
901
|
$textual_type_designations[] = $type_designation;
|
902
|
break;
|
903
|
default: throw new Exception('Unknown type designation class: ' . $type_designation->class);
|
904
|
}
|
905
|
}
|
906
|
|
907
|
// NameTypeDesignation ..................................
|
908
|
if(!empty($name_type_designations)){
|
909
|
usort($name_type_designations, "compare_type_designations_by_status");
|
910
|
foreach($name_type_designations as $name_type_designation){
|
911
|
if ($name_type_designation->notDesignated) {
|
912
|
$out .= '<'. $element_tag .' class="' . html_class_attribute_ref($name_type_designation) . '">' . type_designation_status_label_markup($name_type_designation) . ': '
|
913
|
. t('not designated') . '</'. $element_tag .'>';
|
914
|
}
|
915
|
elseif (isset($name_type_designation->typeName)) {
|
916
|
$link_to_name_page = url(path_to_name($name_type_designation->typeName->uuid));
|
917
|
$out .= '<'. $element_tag .' class="' . html_class_attribute_ref($name_type_designation) . '">' . type_designation_status_label_markup($name_type_designation) ;
|
918
|
|
919
|
if (!empty($name_type_designation->citation)) {
|
920
|
$out .= type_designation_citation_layout($name_type_designation, $separator); // TODO type_designation_citation_layout() needs most probably to be replaced
|
921
|
|
922
|
}
|
923
|
$referenceUri = '';
|
924
|
if (isset($name_type_designation->typeName->nomenclaturalReference)) {
|
925
|
$referenceUri = url(path_to_reference($name_type_designation->typeName->nomenclaturalReference->uuid));
|
926
|
}
|
927
|
$out .= ': ' . render_taxon_or_name($name_type_designation->typeName, $link_to_name_page, $referenceUri, TRUE, TRUE);
|
928
|
}
|
929
|
}
|
930
|
} // END NameTypeDesignation
|
931
|
|
932
|
// SpecimenTypeDesignation ...................................
|
933
|
if (!empty($specimen_type_designations)) {
|
934
|
usort($specimen_type_designations, "compare_specimen_type_designation");
|
935
|
foreach ($specimen_type_designations as $specimen_type_designation) {
|
936
|
$type_citation_markup = '';
|
937
|
|
938
|
if (!empty($specimen_type_designation->citation)) {
|
939
|
|
940
|
$citation_footnote_str = cdm_reference_markup($specimen_type_designation->citation, null, false, true);
|
941
|
$author_team = cdm_ws_get(CDM_WS_REFERENCE_AUTHORTEAM, $specimen_type_designation->citation->uuid);
|
942
|
|
943
|
if (!empty($author_team->titleCache)) {
|
944
|
$year = @timePeriodToString($specimen_type_designation->citation->datePublished, true, 'YYYY');
|
945
|
$authorteam_str = $author_team->titleCache . ($year ? ' ' : '') . $year;
|
946
|
if ($authorteam_str == $specimen_type_designation->citation->titleCache) {
|
947
|
$citation_footnote_str = '';
|
948
|
}
|
949
|
} else {
|
950
|
$authorteam_str = $citation_footnote_str;
|
951
|
// no need for a footnote in case in case it is used as replacement for missing author teams
|
952
|
$citation_footnote_str = '';
|
953
|
}
|
954
|
|
955
|
// for being registered a typedesignation MUST HAVE a citation, so it is save to handle the
|
956
|
// Registration output in if condition checking if the citation is present
|
957
|
$registration_markup = render_registrations($specimen_type_designation->registrations);
|
958
|
$citation_footnote_str .= ($citation_footnote_str ? ' ' : '') . $registration_markup;
|
959
|
|
960
|
$footnote_key_markup = '';
|
961
|
if ($citation_footnote_str) {
|
962
|
// footnotes should be rendered in the parent element so we
|
963
|
// are relying on the FootnoteListKey set there
|
964
|
$_fkey2 = FootnoteManager::addNewFootnote(RenderHints::getFootnoteListKey(), $citation_footnote_str);
|
965
|
$footnote_key_markup = theme('cdm_footnote_key', array(
|
966
|
'footnoteKey' => $_fkey2,
|
967
|
'separator' => $separator,
|
968
|
'highlightable' => TRUE,
|
969
|
'separator_off' => TRUE,
|
970
|
));
|
971
|
|
972
|
}
|
973
|
|
974
|
$type_citation_markup .= ' (' . t('designated by') . ' <span class="typeReference">' . $authorteam_str . '</span>';
|
975
|
if (!empty($specimen_type_designation->citationMicroReference)) {
|
976
|
$type_citation_markup .= ': ' . trim($specimen_type_designation->citationMicroReference);
|
977
|
}
|
978
|
$type_citation_markup .= $footnote_key_markup . ')';
|
979
|
|
980
|
}
|
981
|
|
982
|
$out .= '<'. $element_tag .' class="' . html_class_attribute_ref($specimen_type_designation) . '">';
|
983
|
$out .= type_designation_status_label_markup($specimen_type_designation) . $type_citation_markup;
|
984
|
|
985
|
|
986
|
$derivedUnitFacadeInstance = null;
|
987
|
if (isset($specimen_type_designation->typeSpecimen)) {
|
988
|
$derivedUnitFacadeInstance = cdm_ws_get(CDM_WS_DERIVEDUNIT_FACADE, $specimen_type_designation->typeSpecimen->uuid);
|
989
|
}
|
990
|
|
991
|
if (!empty($derivedUnitFacadeInstance->titleCache)) {
|
992
|
$specimen_markup = $derivedUnitFacadeInstance->titleCache;
|
993
|
if($link_to_specimen_page && isset($derivedUnitFacadeInstance->specimenLabel) && $derivedUnitFacadeInstance->specimenLabel){
|
994
|
$specimen_markup = str_replace($derivedUnitFacadeInstance->specimenLabel, l($derivedUnitFacadeInstance->specimenLabel, path_to_specimen($specimen_type_designation->typeSpecimen->uuid)), $specimen_markup);
|
995
|
}
|
996
|
$out .= ': <span class="' . html_class_attribute_ref($specimen_type_designation->typeSpecimen) . '">'
|
997
|
. $specimen_markup
|
998
|
. '</span>'; // . ': ' . theme('cdm_specimen', array('specimenTypeDesignation' => $derivedUnitFacadeInstance));
|
999
|
if(!empty($derivedUnitFacadeInstance->preferredStableUri)){
|
1000
|
$out .= ' ' . l($derivedUnitFacadeInstance->preferredStableUri, $derivedUnitFacadeInstance->preferredStableUri, array('absolute' => true));
|
1001
|
}
|
1002
|
}
|
1003
|
|
1004
|
|
1005
|
$out .= '</'. $element_tag .'>';
|
1006
|
|
1007
|
}
|
1008
|
} // END Specimen type designations
|
1009
|
|
1010
|
// TextualTypeDesignation .........................
|
1011
|
usort($textual_type_designations, 'compare_textual_type_designation');
|
1012
|
if(!empty($textual_type_designations)) {
|
1013
|
foreach ($textual_type_designations as $textual_type_designation) {
|
1014
|
$annotations_and_sources = handle_annotations_and_sources(
|
1015
|
$textual_type_designation,
|
1016
|
array(
|
1017
|
'sources_as_content' => false, // as footnotes
|
1018
|
'link_to_name_used_in_source' => false,
|
1019
|
'link_to_reference' => true,
|
1020
|
'add_footnote_keys' => true,
|
1021
|
'bibliography_aware' => false
|
1022
|
),
|
1023
|
'',
|
1024
|
RenderHints::getFootnoteListKey() // passing a defined key to avoid separate annotation footnote key see https://dev.e-taxonomy.eu/redmine/issues/8543
|
1025
|
);
|
1026
|
$encasement = $textual_type_designation->verbatim ? '"' : '';
|
1027
|
$out .= '<' . $element_tag . ' class="' . html_class_attribute_ref($textual_type_designation) . '">' . type_designation_status_label_markup(null)
|
1028
|
. ': ' . $encasement . trim($textual_type_designation->text_L10n->text) . $encasement . $annotations_and_sources['foot_note_keys'] .'</' . $element_tag . '>';
|
1029
|
// if(is_array( $annotations_and_sources['source_references'])){
|
1030
|
// $citation_markup = join(', ', $annotations_and_sources['source_references']);
|
1031
|
// }
|
1032
|
// $out .= $citation_markup;
|
1033
|
}
|
1034
|
}
|
1035
|
|
1036
|
// Footnotes for citations, collection acronym?s.
|
1037
|
// footnotes should be rendered in the parent element so we
|
1038
|
// are relying on the FootnoteListKey set there
|
1039
|
$_fkey = FootnoteManager::addNewFootnote(
|
1040
|
RenderHints::getFootnoteListKey(),
|
1041
|
(isset($derivedUnitFacadeInstance->collection->titleCache) ? $derivedUnitFacadeInstance->collection->titleCache : FALSE)
|
1042
|
);
|
1043
|
$out .= theme('cdm_footnote_key', array('footnoteKey' => $_fkey, 'separator' => $separator));
|
1044
|
$out .= '</' . $enclosing_tag .'>';
|
1045
|
|
1046
|
RenderHints::popFromRenderStack();
|
1047
|
|
1048
|
return $out;
|
1049
|
}
|
1050
|
|
1051
|
|
1052
|
/**
|
1053
|
* Composes the textual representation for the type designation of taxon name identified by the uuid in with a map for the location data.
|
1054
|
*
|
1055
|
* @param $taxon_name_uuid
|
1056
|
* @param $show_specimen_details
|
1057
|
* @return array
|
1058
|
* A drupal render array with the following elements:
|
1059
|
* - 'type_designations'
|
1060
|
* - 'map'
|
1061
|
* - 'specimens'
|
1062
|
*
|
1063
|
* @ingroup compose
|
1064
|
*/
|
1065
|
function compose_type_designations($taxon_name_uuid, $show_specimen_details = false)
|
1066
|
{
|
1067
|
$render_array = array(
|
1068
|
'type_designations' => array(),
|
1069
|
'map' => array(),
|
1070
|
);
|
1071
|
$type_designations = cdm_ws_get(CDM_WS_PORTAL_NAME_TYPEDESIGNATIONS, $taxon_name_uuid);
|
1072
|
if ($type_designations) {
|
1073
|
usort($type_designations, 'compare_specimen_type_designation');
|
1074
|
$render_array['type_designations'] = markup_to_render_array(
|
1075
|
render_type_designations($type_designations, 'div', 'div')
|
1076
|
);
|
1077
|
|
1078
|
$render_array['map'] = compose_type_designations_map($type_designations);
|
1079
|
}
|
1080
|
return $render_array;
|
1081
|
}
|
1082
|
|
1083
|
|
1084
|
/**
|
1085
|
* Composes the TypedEntityReference to name type designations passed as associatve array.
|
1086
|
*
|
1087
|
* @param $$type_entity_refs array
|
1088
|
* an associative array of name type type => TypedEntityReference for name type designations as
|
1089
|
* produced by the eu.etaxonomy.cdm.api.service.name.TypeDesignationSetManager
|
1090
|
*
|
1091
|
* @ingroup compose
|
1092
|
*/
|
1093
|
function compose_name_type_designations($type_entity_refs){
|
1094
|
$render_array = array();
|
1095
|
$preferredStableUri = '';
|
1096
|
foreach($type_entity_refs as $type_status => $name_types){
|
1097
|
foreach ($name_types as $name_type){
|
1098
|
$type_designation = cdm_ws_get(CDM_WS_TYPEDESIGNATION, array($name_type->uuid, 'preferredUri'));
|
1099
|
if(isset($type_designation->typeSpecimen->preferredStableUri) && $type_designation->typeSpecimen->preferredStableUri){
|
1100
|
$preferredStableUri = $type_designation->typeSpecimen->preferredStableUri;
|
1101
|
}
|
1102
|
$render_array[] = markup_to_render_array('<div class="name_type_designation ' . html_class_attribute_ref($name_type) . '"><span class="type-status">'. ucfirst($type_status) . "</span>: "
|
1103
|
. $name_type->label
|
1104
|
. ($preferredStableUri ? " ". l($preferredStableUri, $preferredStableUri) : '')
|
1105
|
. '</div>');
|
1106
|
}
|
1107
|
}
|
1108
|
return $render_array;
|
1109
|
}
|
1110
|
|
1111
|
/**
|
1112
|
* Composes the specimen type designations with map from the the $type_entity_refs
|
1113
|
*
|
1114
|
* @param $type_entity_refs array
|
1115
|
* an associative array of specimen type type => TypedEntityReference for specimen type designations as
|
1116
|
* produced by the eu.etaxonomy.cdm.api.service.name.TypeDesignationSetManager
|
1117
|
*
|
1118
|
* @param $show_media_specimen
|
1119
|
* @return array
|
1120
|
* A drupal render array with the following elements:
|
1121
|
* - 'type_designations'
|
1122
|
* - 'map'
|
1123
|
*
|
1124
|
* @ingroup compose
|
1125
|
*
|
1126
|
*/
|
1127
|
function compose_specimen_type_designations($type_entity_refs, $show_media_specimen){
|
1128
|
|
1129
|
$render_array = array();
|
1130
|
|
1131
|
$type_designation_list = array();
|
1132
|
uksort($type_entity_refs, "compare_type_designation_status_labels");
|
1133
|
foreach($type_entity_refs as $type_status => $specimen_types){
|
1134
|
foreach($specimen_types as $specimen_type){
|
1135
|
|
1136
|
$type_designation = cdm_ws_get(CDM_WS_PORTAL_TYPEDESIGNATION, array($specimen_type->uuid));
|
1137
|
$type_designation_list[] = $type_designation; // collect for the map
|
1138
|
|
1139
|
$derivedUnitFacadeInstance = cdm_ws_get(CDM_WS_PORTAL_DERIVEDUNIT_FACADE, $type_designation->typeSpecimen->uuid);
|
1140
|
// the media specimen is not contained in the $type_designation returned by CDM_PORTAL_TYPEDESIGNATION, so we need to fetch it separately
|
1141
|
$mediaSpecimen = cdm_ws_get(CDM_WS_PORTAL_OCCURRENCE, array($type_designation->typeSpecimen->uuid, 'mediaSpecimen'));
|
1142
|
|
1143
|
|
1144
|
$preferredStableUri = '';
|
1145
|
$citation_markup = '';
|
1146
|
$media = '';
|
1147
|
|
1148
|
// preferredStableUri
|
1149
|
if(isset($type_designation->typeSpecimen->preferredStableUri) && $type_designation->typeSpecimen->preferredStableUri){
|
1150
|
$preferredStableUri = $type_designation->typeSpecimen->preferredStableUri;
|
1151
|
}
|
1152
|
|
1153
|
if($show_media_specimen && $mediaSpecimen){
|
1154
|
// compose output
|
1155
|
// mediaURI
|
1156
|
if(isset($mediaSpecimen->representations[0])) {
|
1157
|
$gallery_settings = getGallerySettings(CDM_DATAPORTAL_SPECIMEN_GALLERY_NAME);
|
1158
|
$captionElements = array(
|
1159
|
'#uri' => t('open media'),
|
1160
|
'elements' => array('-none-'),
|
1161
|
'sources_as_content' => true
|
1162
|
);
|
1163
|
$media = compose_cdm_media_gallerie(array(
|
1164
|
'mediaList' => array($mediaSpecimen),
|
1165
|
'galleryName' => CDM_DATAPORTAL_TYPE_SPECIMEN_GALLERY_NAME . '_' . $specimen_type->uuid,
|
1166
|
'maxExtend' => $gallery_settings['cdm_dataportal_media_maxextend'],
|
1167
|
'cols' => $gallery_settings['cdm_dataportal_media_cols'],
|
1168
|
'captionElements' => $captionElements,
|
1169
|
));
|
1170
|
}
|
1171
|
// citation and detail
|
1172
|
$annotations_and_sources = handle_annotations_and_sources(
|
1173
|
$mediaSpecimen,
|
1174
|
array(
|
1175
|
'sources_as_content' => true,
|
1176
|
'link_to_name_used_in_source' => false,
|
1177
|
'link_to_reference' => true,
|
1178
|
'add_footnote_keys' => false,
|
1179
|
'bibliography_aware' => false),
|
1180
|
'',
|
1181
|
null
|
1182
|
);
|
1183
|
if(is_array( $annotations_and_sources['source_references'])){
|
1184
|
$citation_markup = join(', ', $annotations_and_sources['source_references']);
|
1185
|
}
|
1186
|
}
|
1187
|
|
1188
|
$specimen_markup = $derivedUnitFacadeInstance->titleCache;
|
1189
|
if(isset($derivedUnitFacadeInstance->specimenLabel) && $derivedUnitFacadeInstance->specimenLabel){
|
1190
|
$specimen_markup = str_replace($derivedUnitFacadeInstance->specimenLabel, l($derivedUnitFacadeInstance->specimenLabel, path_to_specimen($type_designation->typeSpecimen->uuid)), $specimen_markup);
|
1191
|
}
|
1192
|
|
1193
|
$type_designation_render_array = markup_to_render_array('<div class="specimen_type_designation ' . html_class_attribute_ref($specimen_type) . '">
|
1194
|
<span class="type-status">' . ucfirst($type_status) . "</span>: "
|
1195
|
. $specimen_markup
|
1196
|
. ($citation_markup ? ' '. $citation_markup : '')
|
1197
|
. ($preferredStableUri ? " ". l($preferredStableUri, $preferredStableUri) : '')
|
1198
|
. $media
|
1199
|
. '</div>');
|
1200
|
|
1201
|
$render_array['type_designations'][] = $type_designation_render_array;
|
1202
|
}
|
1203
|
}
|
1204
|
if(count($type_designation_list) > 0 ){
|
1205
|
$render_array['map'] = compose_type_designations_map($type_designation_list);
|
1206
|
} else {
|
1207
|
$render_array['map'] = array();
|
1208
|
}
|
1209
|
return $render_array;
|
1210
|
}
|
1211
|
|
1212
|
/**
|
1213
|
* @param $name_rel
|
1214
|
* @param $current_name_uuid
|
1215
|
* @param $current_taxon_uuid
|
1216
|
* @param $suppress_if_current_name_is_source // FIXME UNUSED !!!!
|
1217
|
* @param $show_name_cache_only
|
1218
|
* The nameCache will be shown instead of the titleCache if this parameter is true.
|
1219
|
* @return null|string
|
1220
|
*/
|
1221
|
function name_relationship_markup($name_rel, $current_name_uuid, $current_taxon_uuid, $show_name_cache_only = false){
|
1222
|
|
1223
|
$relationship_markup = null;
|
1224
|
|
1225
|
$current_name_is_toName = $current_name_uuid == $name_rel->toName->uuid;
|
1226
|
|
1227
|
if($current_name_is_toName){
|
1228
|
$name = $name_rel->fromName;
|
1229
|
} else {
|
1230
|
$name = $name_rel->toName;
|
1231
|
}
|
1232
|
|
1233
|
cdm_load_tagged_full_title($name);
|
1234
|
|
1235
|
$highlited_synonym_uuid = isset ($name->taxonBases[0]->uuid) ? $name->taxonBases[0]->uuid : '';
|
1236
|
if(!$show_name_cache_only){
|
1237
|
$relationship_markup = render_taxon_or_name($name,
|
1238
|
url(path_to_name($name->uuid, $current_taxon_uuid, $highlited_synonym_uuid, false))
|
1239
|
);
|
1240
|
} else {
|
1241
|
$relationship_markup = l(
|
1242
|
'<span class="' . html_class_attribute_ref($name) . '"">' . $name->nameCache . '</span>',
|
1243
|
path_to_name($name->uuid, $current_taxon_uuid, $highlited_synonym_uuid, false),
|
1244
|
array('html' => true)
|
1245
|
);
|
1246
|
}
|
1247
|
|
1248
|
return $relationship_markup;
|
1249
|
}
|
1250
|
|
1251
|
|
1252
|
/**
|
1253
|
* Composes an inline representation of selected name relationships
|
1254
|
*
|
1255
|
* The output of this function will be usually appended to taxon name representations.
|
1256
|
* Only the following types are displayed: LATER_HOMONYM, TREATED_AS_LATER_HOMONYM, BLOCKING_NAME_FOR, ORTHOGRAPHIC_VARIANT
|
1257
|
*
|
1258
|
* LATER_HOMONYM, TREATED_AS_LATER_HOMONYM, BLOCKING_NAME_FOR are displayed as
|
1259
|
* non {titleCache} nec {titleCache} nec {titleCache} whereas the related names
|
1260
|
* are ordered alphabetically.
|
1261
|
*
|
1262
|
* ORTHOGRAPHIC_VARIANT is displayed as 'ort. var. {nameCache}'
|
1263
|
*
|
1264
|
* Related issues:
|
1265
|
* - https://dev.e-taxonomy.eu/redmine/issues/5697 "Show name conserved against as [non xxx]"
|
1266
|
* - https://dev.e-taxonomy.eu/redmine/issues/6678 "How to correctly show name relationship "orth. var." in dataportal"
|
1267
|
* - https://dev.e-taxonomy.eu/redmine/issues/5857
|
1268
|
* - https://dev.e-taxonomy.eu/redmine/issues/2001 "[Cichorieae Portal] Name Relationship -> blocking name are not shown"
|
1269
|
*
|
1270
|
* @param $name_relations
|
1271
|
* The list of CDM NameRelationsips
|
1272
|
* @param $current_name_uuid
|
1273
|
* The Uuid of the name for which the relations are to be rendered, the current name will be hidden when
|
1274
|
* rendering the relation an only the other name is shown. Parameter is REQUIRED.
|
1275
|
* @param $suppress_if_current_name_is_source
|
1276
|
* The display of the relation will be
|
1277
|
* suppressed is the current name is on the source of the relation edge.
|
1278
|
* That is if it is on the from side of the relation. Except for 'blocking name for' which is
|
1279
|
* an inverse relation. For this relation type the toName is taken in to account.
|
1280
|
* @param $current_taxon_uuid
|
1281
|
* The taxon to be omitted from related taxa. This is only used to create links, see path_to_name()
|
1282
|
* @return array
|
1283
|
* A drupal render array
|
1284
|
*
|
1285
|
* @ingroup Compose
|
1286
|
*/
|
1287
|
function compose_name_relationships_inline($name_relations, $current_name_uuid, $current_taxon_uuid, $suppress_if_current_name_is_source = true) {
|
1288
|
|
1289
|
RenderHints::pushToRenderStack('homonym');
|
1290
|
// the render stack element homonyms is being used in the default render templates !!!, see CDM_NAME_RENDER_TEMPLATES_DEFAULT
|
1291
|
|
1292
|
$selected_name_rel_uuids = variable_get(CDM_NAME_RELATIONSHIP_INLINE_TYPES, unserialize(CDM_NAME_RELATIONSHIP_INLINE_TYPES_DEFAULT));
|
1293
|
$name_rel_type_filter = array('direct' => array(), 'inverse' => array());
|
1294
|
foreach ($selected_name_rel_uuids as $uuid){
|
1295
|
$name_rel_type_filter['direct'][$uuid] = $uuid;
|
1296
|
if($uuid != UUID_NAMERELATIONSHIPTYPE_MISSPELLING){
|
1297
|
$name_rel_type_filter['inverse'][$uuid] = $uuid;
|
1298
|
}
|
1299
|
}
|
1300
|
|
1301
|
$list_prefix = '<span class="name_relationships">[';
|
1302
|
$list_suffix = ']</span>';
|
1303
|
$item_prefix = '<span class="item">';
|
1304
|
$item_suffix = '</span> ';
|
1305
|
$render_array = compose_name_relationships($name_relations, $name_rel_type_filter, $current_name_uuid, $current_taxon_uuid, $list_prefix, $list_suffix, $item_prefix, $item_suffix);
|
1306
|
|
1307
|
// remove the glue space from the last item element which has been added by the $item_suffix = '</span> '
|
1308
|
$items_ctn = count($render_array['list']['items']);
|
1309
|
if($items_ctn){
|
1310
|
$render_array['list']['items'][$items_ctn - 1]['#suffix'] = '</span>';
|
1311
|
}
|
1312
|
|
1313
|
RenderHints::popFromRenderStack();
|
1314
|
return $render_array;
|
1315
|
}
|
1316
|
|
1317
|
/**
|
1318
|
* Composes an list representation of the name relationships.
|
1319
|
*
|
1320
|
* The output of this function will be usually appended to taxon name representations.
|
1321
|
*
|
1322
|
* Related issues:
|
1323
|
* - https://dev.e-taxonomy.eu/redmine/issues/5697 "Show name conserved against as [non xxx]"
|
1324
|
* - https://dev.e-taxonomy.eu/redmine/issues/6678 "How to correctly show name relationship "orth. var." in dataportal"
|
1325
|
* - https://dev.e-taxonomy.eu/redmine/issues/5857
|
1326
|
*
|
1327
|
* @param $name_relations
|
1328
|
* The list of CDM NameRelationsips
|
1329
|
* @param $current_name_uuid
|
1330
|
* The Uuid of the name for which the relations are to be rendered, the current name will be hidden when
|
1331
|
* rendering the relation an only the other name is shown. Parameter is REQUIRED.
|
1332
|
* @param $current_taxon_uuid
|
1333
|
* The taxon to be omitted from related taxa. This is only used to create links, see path_to_name()
|
1334
|
* @return array
|
1335
|
* A drupal render array
|
1336
|
*
|
1337
|
* @ingroup Compose
|
1338
|
*/
|
1339
|
function compose_name_relationships_list($name_relations, $current_name_uuid, $current_taxon_uuid) {
|
1340
|
|
1341
|
// $ordered_name_relation_type_uuids = array_keys(cdm_terms_by_type_as_option('NameRelationshipType', CDM_ORDER_BY_ORDER_INDEX_ASC));
|
1342
|
|
1343
|
$key = 'name_relationships';
|
1344
|
RenderHints::pushToRenderStack($key);
|
1345
|
if(!RenderHints::getFootnoteListKey()){
|
1346
|
RenderHints::setFootnoteListKey($key);
|
1347
|
}
|
1348
|
// the render stack element homonyms is being used in the default render templates !!!, see CDM_NAME_RENDER_TEMPLATES_DEFAULT
|
1349
|
|
1350
|
$selected_name_rel_uuids = variable_get(CDM_NAME_RELATIONSHIP_LIST_TYPES, cdm_vocabulary_as_defaults(UUID_NAME_RELATIONSHIP_TYPE));
|
1351
|
$name_rel_type_filter = array('direct' => array(), 'inverse' => array());
|
1352
|
foreach ($selected_name_rel_uuids as $uuid){
|
1353
|
$name_rel_type_filter['direct'][$uuid] = $uuid;
|
1354
|
$name_rel_type_filter['inverse'][$uuid] = $uuid;
|
1355
|
}
|
1356
|
|
1357
|
$list_prefix = '<div class="relationships_list name_relationships">';
|
1358
|
$list_suffix = '</div>';
|
1359
|
$item_prefix = '<div class="item">';
|
1360
|
$item_suffix = '</div>';
|
1361
|
|
1362
|
$render_array = compose_name_relationships($name_relations, $name_rel_type_filter, $current_name_uuid, $current_taxon_uuid, $list_prefix, $list_suffix, $item_prefix, $item_suffix);
|
1363
|
|
1364
|
RenderHints::popFromRenderStack();
|
1365
|
$render_array['footnotes'] = markup_to_render_array(theme('cdm_footnotes', array('footnoteListKey' => RenderHints::getFootnoteListKey())));
|
1366
|
if(RenderHints::getFootnoteListKey() == $key) {
|
1367
|
RenderHints::clearFootnoteListKey();
|
1368
|
}
|
1369
|
return $render_array;
|
1370
|
}
|
1371
|
|
1372
|
/**
|
1373
|
* @param $name_relations
|
1374
|
* @param $name_rel_type_filter
|
1375
|
* Associative array with two keys:
|
1376
|
* - 'direct': the relationship type uuids for the direct direction of the relation edge to be included
|
1377
|
* - 'inverse': the relationship type uuids for the direct direction of the relation edge to be included
|
1378
|
* @param $current_name_uuid
|
1379
|
* @param $current_taxon_uuid
|
1380
|
* @param $list_prefix
|
1381
|
* @param $list_suffix
|
1382
|
* @param $item_prefix
|
1383
|
* @param $item_suffix
|
1384
|
* @return array
|
1385
|
*
|
1386
|
* @ingroup Compose
|
1387
|
*/
|
1388
|
function compose_name_relationships($name_relations, $name_rel_type_filter, $current_name_uuid, $current_taxon_uuid,
|
1389
|
$list_prefix, $list_suffix, $item_prefix, $item_suffix)
|
1390
|
{
|
1391
|
$non_nec_name_reltype_uuids = array(UUID_NAMERELATIONSHIPTYPE_LATER_HOMONYM,
|
1392
|
UUID_NAMERELATIONSHIPTYPE_TREATED_AS_LATER_HOMONYM,
|
1393
|
UUID_NAMERELATIONSHIPTYPE_CONSERVED_AGAINST,
|
1394
|
UUID_NAMERELATIONSHIPTYPE_MISSPELLING,
|
1395
|
UUID_NAMERELATIONSHIPTYPE_BLOCKING_NAME_FOR);
|
1396
|
|
1397
|
$render_array = array(
|
1398
|
'list' => array(
|
1399
|
'#prefix' => $list_prefix,
|
1400
|
'#suffix' => $list_suffix,
|
1401
|
'items' => array()
|
1402
|
),
|
1403
|
'footnotes' => array()
|
1404
|
);
|
1405
|
|
1406
|
if ($name_relations) {
|
1407
|
|
1408
|
// remove all relations which are not selected in the settings and
|
1409
|
// separate all LATER_HOMONYM, TREATED_AS_LATER_HOMONYM, BLOCKING_NAME_FOR relations and ORTHOGRAPHIC_VARIANTs
|
1410
|
// for special handling
|
1411
|
$filtered_name_rels = array();
|
1412
|
$non_nec_name_rels = array();
|
1413
|
$orthographic_variants = array();
|
1414
|
foreach ($name_relations as $name_rel) {
|
1415
|
$rel_type_uuid = $name_rel->type->uuid;
|
1416
|
$is_inverse_relation = $current_name_uuid == $name_rel->toName->uuid;
|
1417
|
if ((!$is_inverse_relation && isset($name_rel_type_filter['direct'][$rel_type_uuid]) && $name_rel_type_filter['direct'][$rel_type_uuid])
|
1418
|
||($is_inverse_relation && isset($name_rel_type_filter['inverse'][$rel_type_uuid]) && $name_rel_type_filter['inverse'][$rel_type_uuid])) {
|
1419
|
|
1420
|
if (array_search($rel_type_uuid, $non_nec_name_reltype_uuids) !== false && (
|
1421
|
$current_name_uuid == $name_rel->fromName->uuid && $rel_type_uuid != UUID_NAMERELATIONSHIPTYPE_BLOCKING_NAME_FOR
|
1422
|
|| $current_name_uuid == $name_rel->toName->uuid && $rel_type_uuid == UUID_NAMERELATIONSHIPTYPE_BLOCKING_NAME_FOR
|
1423
|
)
|
1424
|
){
|
1425
|
$non_nec_name_rels[] = $name_rel;
|
1426
|
} else if (UUID_NAMERELATIONSHIPTYPE_ORTHOGRAPHIC_VARIANT == $rel_type_uuid) {
|
1427
|
$orthographic_variants[] = $name_rel;
|
1428
|
} else {
|
1429
|
|
1430
|
$filtered_name_rels[] = $name_rel;
|
1431
|
}
|
1432
|
}
|
1433
|
}
|
1434
|
$name_relations = $filtered_name_rels;
|
1435
|
|
1436
|
usort($name_relations, 'compare_name_relations_by_term_order_index');
|
1437
|
|
1438
|
// compose
|
1439
|
foreach ($name_relations as $name_rel) {
|
1440
|
|
1441
|
$is_inverse_relation = $current_name_uuid == $name_rel->toName->uuid;
|
1442
|
|
1443
|
$rel_footnote_key_markup = name_relationship_footnote_markup($name_rel);
|
1444
|
$relationship_markup = name_relationship_markup($name_rel, $current_name_uuid, $current_taxon_uuid);
|
1445
|
|
1446
|
$label = cdm_relationship_type_term_abbreviated_label($name_rel->type, $is_inverse_relation);
|
1447
|
$symbol = cdm_relationship_type_term_symbol($name_rel->type, $is_inverse_relation);
|
1448
|
$symbol_markup = '<span class="symbol" title="' . $label . '">' . $symbol . '</span>' . $rel_footnote_key_markup . ' ';
|
1449
|
$relationship_markup = $symbol_markup . $relationship_markup;
|
1450
|
if ($relationship_markup) {
|
1451
|
$render_array['list']['items'][] = markup_to_render_array($relationship_markup,
|
1452
|
null,
|
1453
|
$item_prefix,
|
1454
|
$item_suffix);
|
1455
|
}
|
1456
|
}
|
1457
|
|
1458
|
// name relationships to be displayed as non nec
|
1459
|
if (count($non_nec_name_rels) > 0) {
|
1460
|
$non_nec_markup = '';
|
1461
|
foreach ($non_nec_name_rels as $name_rel) {
|
1462
|
$is_inverse_relation = $current_name_uuid == $name_rel->toName->uuid;
|
1463
|
$rel_footnote_key_markup = name_relationship_footnote_markup($name_rel);
|
1464
|
$relationship_markup = name_relationship_markup($name_rel, $current_name_uuid, $current_taxon_uuid);
|
1465
|
$label = cdm_relationship_type_term_abbreviated_label($name_rel->type, $is_inverse_relation);
|
1466
|
$symbol = $non_nec_markup ? ' nec ' : 'non';
|
1467
|
$symbol_markup = '<span class="symbol" title="' . $label . '">' . $symbol . '</span>' . $rel_footnote_key_markup . ' ';
|
1468
|
$non_nec_markup .= $symbol_markup . $relationship_markup;
|
1469
|
}
|
1470
|
if ($non_nec_markup) {
|
1471
|
$render_array['list']['items'][] = markup_to_render_array($non_nec_markup,
|
1472
|
null,
|
1473
|
$item_prefix,
|
1474
|
$item_suffix);
|
1475
|
}
|
1476
|
}
|
1477
|
|
1478
|
// orthographic variants
|
1479
|
if (count($orthographic_variants) > 0) {
|
1480
|
foreach ($orthographic_variants as $name_rel) {
|
1481
|
|
1482
|
$is_inverse_relation = $current_name_uuid == $name_rel->toName->uuid;
|
1483
|
$rel_footnote_key_markup = name_relationship_footnote_markup($name_rel);
|
1484
|
$relationship_markup = name_relationship_markup($name_rel, $current_name_uuid, $current_taxon_uuid, TRUE);
|
1485
|
$nomref_footnote_key_markup = nomenclatural_reference_footnote_key_markup($name_rel->toName);
|
1486
|
$label = cdm_relationship_type_term_abbreviated_label($name_rel->type, $is_inverse_relation);
|
1487
|
$symbol = cdm_relationship_type_term_symbol($name_rel->type, $is_inverse_relation);
|
1488
|
$symbol_markup = '<span class="symbol" title="' . $label . '">' . $symbol . '</span>' . $rel_footnote_key_markup . ' ';
|
1489
|
$relationship_markup = $symbol_markup . $relationship_markup . $nomref_footnote_key_markup;
|
1490
|
}
|
1491
|
if ($relationship_markup) {
|
1492
|
$render_array['list']['items'][] = markup_to_render_array($relationship_markup,
|
1493
|
null,
|
1494
|
$item_prefix,
|
1495
|
$item_suffix);
|
1496
|
}
|
1497
|
}
|
1498
|
}
|
1499
|
return $render_array;
|
1500
|
}
|
1501
|
|
1502
|
/**
|
1503
|
* @param $name_rel
|
1504
|
* @return string
|
1505
|
*/
|
1506
|
function name_relationship_footnote_markup($name_rel)
|
1507
|
{
|
1508
|
$footnote_markup = '';
|
1509
|
$footnote_key_markup = '';
|
1510
|
if (isset($name_rel->ruleConsidered) && $name_rel->ruleConsidered) {
|
1511
|
$footnote_markup = '<span class="rule_considered">' . $name_rel->ruleConsidered . '</span> ';
|
1512
|
}
|
1513
|
if (isset($name_rel->citation)) {
|
1514
|
$footnote_markup .= '<span class="reference">' . $name_rel->citation->titleCache . '</span>';
|
1515
|
}
|
1516
|
if (isset($name_rel->citationMicroReference) && $name_rel->citationMicroReference) {
|
1517
|
$footnote_markup .= (isset($name_rel->citation) ? ':' : '') . ' <span class="reference_detail">' . $name_rel->citationMicroReference . '</span>';
|
1518
|
}
|
1519
|
if ($footnote_markup) {
|
1520
|
$fnkey = FootnoteManager::addNewFootnote(RenderHints::getFootnoteListKey(), $footnote_markup);
|
1521
|
$footnote_key_markup = theme('cdm_footnote_key', array(
|
1522
|
'footnoteKey' => $fnkey,
|
1523
|
'separator' => ',',
|
1524
|
'highlightable' => TRUE,
|
1525
|
'separator_off' => TRUE,
|
1526
|
));
|
1527
|
}
|
1528
|
return $footnote_key_markup;
|
1529
|
}
|
1530
|
|
1531
|
/**
|
1532
|
* @param $nom_status
|
1533
|
* @return string
|
1534
|
*/
|
1535
|
function nomenclatural_status_footnote_markup($nom_status)
|
1536
|
{
|
1537
|
// NomenclaturalStatus is a subclass of ReferencedEntityBase
|
1538
|
// and has the same structure as TaxonNameRelationship
|
1539
|
return name_relationship_footnote_markup($nom_status);
|
1540
|
}
|
1541
|
|
1542
|
/**
|
1543
|
* @param $name
|
1544
|
* @return string
|
1545
|
*/
|
1546
|
function nomenclatural_reference_footnote_key_markup($name)
|
1547
|
{
|
1548
|
$footnote_markup = '';
|
1549
|
$footnote_key_markup = '';
|
1550
|
if (isset($name->nomenclaturalReference) && $name->nomenclaturalReference) {
|
1551
|
$footnote_markup .= '<span class="reference">' . $name->nomenclaturalReference->titleCache . '</span>';
|
1552
|
}
|
1553
|
if (isset($name->nomenclaturalMicroReference)) {
|
1554
|
$footnote_markup .= ($footnote_key_markup ? ':' : '') . '<span class="reference_detail">' . $name->nomenclaturalMicroReference . '</span>';
|
1555
|
}
|
1556
|
if ($footnote_markup) {
|
1557
|
$fnkey = FootnoteManager::addNewFootnote(RenderHints::getFootnoteListKey(), $footnote_markup);
|
1558
|
$footnote_key_markup = theme('cdm_footnote_key', array(
|
1559
|
'footnoteKey' => $fnkey,
|
1560
|
'separator' => ',',
|
1561
|
'highlightable' => TRUE,
|
1562
|
'separator_off' => TRUE,
|
1563
|
));
|
1564
|
}
|
1565
|
return $footnote_key_markup;
|
1566
|
}
|
1567
|
|
1568
|
|
1569
|
/**
|
1570
|
* @param $taxon
|
1571
|
* @return array
|
1572
|
*/
|
1573
|
function cdm_name_relationships_for_taxon($taxon)
|
1574
|
{
|
1575
|
$from_name_relations = cdm_ws_get(CDM_WS_PORTAL_TAXON_FROM_NAMERELATIONS, $taxon->uuid);
|
1576
|
$to_name_relations = cdm_ws_get(CDM_WS_PORTAL_TAXON_TO_NAMERELATIONS, $taxon->uuid);
|
1577
|
$name_relations = array_merge($from_name_relations, $to_name_relations);
|
1578
|
return $name_relations;
|
1579
|
}
|
1580
|
|
1581
|
|
1582
|
/**
|
1583
|
* Recursively searches the array for the $key and sets the given value.
|
1584
|
*
|
1585
|
* @param mixed $key
|
1586
|
* Key to search for.
|
1587
|
* @param mixed $value
|
1588
|
* Value to set.'
|
1589
|
* @param array $array
|
1590
|
* Array to search in.
|
1591
|
*
|
1592
|
* @return bool
|
1593
|
* True if the key has been found.
|
1594
|
*/
|
1595
|
function &array_setr($key, $value, array &$array) {
|
1596
|
$res = NULL;
|
1597
|
foreach ($array as $k => &$v) {
|
1598
|
if ($key == $k) {
|
1599
|
$v = $value;
|
1600
|
return $array;
|
1601
|
}
|
1602
|
elseif (is_array($v)) {
|
1603
|
$innerArray = array_setr($key, $value, $v);
|
1604
|
if ($innerArray) {
|
1605
|
return $array;
|
1606
|
}
|
1607
|
}
|
1608
|
}
|
1609
|
return $res;
|
1610
|
}
|
1611
|
|
1612
|
/**
|
1613
|
* @todo Please document this function.
|
1614
|
* @see http://drupal.org/node/1354
|
1615
|
*/
|
1616
|
function &get_preceding_contentElement($contentElementKey, array &$renderTemplate) {
|
1617
|
$res = NULL;
|
1618
|
$precedingElement = NULL;
|
1619
|
foreach ($renderTemplate as &$part) {
|
1620
|
foreach ($part as $key => &$element) {
|
1621
|
if ($key == $contentElementKey) {
|
1622
|
return $precedingElement;
|
1623
|
}
|
1624
|
$precedingElement = $element;
|
1625
|
}
|
1626
|
}
|
1627
|
return $res;
|
1628
|
}
|
1629
|
|
1630
|
/**
|
1631
|
* @todo Please document this function.
|
1632
|
* @see http://drupal.org/node/1354
|
1633
|
*/
|
1634
|
function &get_preceding_contentElementKey($contentElementKey, array &$renderTemplate) {
|
1635
|
$res = NULL;
|
1636
|
$precedingKey = NULL;
|
1637
|
foreach ($renderTemplate as &$part) {
|
1638
|
if (is_array($part)) {
|
1639
|
foreach ($part as $key => &$element) {
|
1640
|
if ($key == $contentElementKey) {
|
1641
|
return $precedingKey;
|
1642
|
}
|
1643
|
if (!str_beginsWith($key, '#')) {
|
1644
|
$precedingKey = $key;
|
1645
|
}
|
1646
|
}
|
1647
|
}
|
1648
|
}
|
1649
|
return $res;
|
1650
|
}
|
1651
|
|
1652
|
function nameTypeToDTYPE($dtype){
|
1653
|
static $nameTypeLabelMap = array(
|
1654
|
"ICNB" => "BacterialName",
|
1655
|
"ICNAFP" => "BotanicalName",
|
1656
|
"ICNCP" => "CultivarPlantName",
|
1657
|
"ICZN" => "ZoologicalName",
|
1658
|
"ICVCN" => "ViralName",
|
1659
|
"Any taxon name" => "TaxonName",
|
1660
|
"NonViral" => "TaxonName",
|
1661
|
"Fungus" => "BotanicalName",
|
1662
|
"Plant" => "BotanicalName",
|
1663
|
"Algae" => "BotanicalName",
|
1664
|
);
|
1665
|
return $nameTypeLabelMap[$dtype];
|
1666
|
|
1667
|
}
|
1668
|
|
1669
|
|
1670
|
function compare_name_relations_by_term_order_index($name_rel1, $name_rel2){
|
1671
|
return compare_terms_by_order_index($name_rel1->type, $name_rel2->type);
|
1672
|
}
|
1673
|
|
1674
|
/**
|
1675
|
* Provides an array with the different registration types covered by the passed registration.
|
1676
|
*
|
1677
|
* The labels in the returned array are translatable.
|
1678
|
*
|
1679
|
* See also https://dev.e-taxonomy.eu/redmine/issues/8016
|
1680
|
*
|
1681
|
* @param $registration_dto
|
1682
|
* @return array
|
1683
|
* An array of the labels describing the different registration types covered by the passed registration.
|
1684
|
*/
|
1685
|
function registration_types($registration_dto){
|
1686
|
$reg_type_labels = array();
|
1687
|
if(isset($registration_dto->nameRef)){
|
1688
|
$reg_type_labels["name"] = t("new name");
|
1689
|
$reg_type_labels["taxon"] = t("new taxon");
|
1690
|
$name_relations = cdm_ws_fetch_all(str_replace("$0", $registration_dto->nameRef->uuid, CDM_WS_PORTAL_NAME_NAME_RELATIONS));
|
1691
|
$is_new_combination = true;
|
1692
|
foreach($name_relations as $name_rel){
|
1693
|
if(isset($name_rel->type->uuid)){
|
1694
|
$name_is_from_name = $registration_dto->nameRef->uuid == $name_rel->fromName->uuid;
|
1695
|
switch($name_rel->type->uuid) {
|
1696
|
case UUID_NAMERELATIONSHIPTYPE_BASIONYM:
|
1697
|
if(!$name_is_from_name){
|
1698
|
$reg_type_labels["basionym"] = t("new combination");
|
1699
|
$is_new_combination = true;
|
1700
|
}
|
1701
|
break;
|
1702
|
case UUID_NAMERELATIONSHIPTYPE_REPLACED_SYNONYM:
|
1703
|
if(!$name_is_from_name) {
|
1704
|
$is_new_combination = true;
|
1705
|
}
|
1706
|
break;
|
1707
|
case UUID_NAMERELATIONSHIPTYPE_VALIDATED_BY_NAME:
|
1708
|
if(!$name_is_from_name) {
|
1709
|
$reg_type_labels["validation"] = t("validation");
|
1710
|
}
|
1711
|
break;
|
1712
|
case UUID_NAMERELATIONSHIPTYPE_ORTHOGRAPHIC_VARIANT:
|
1713
|
if(!$name_is_from_name) {
|
1714
|
$reg_type_labels["orth_var"] = t("orthographical correction");
|
1715
|
}break;
|
1716
|
default:
|
1717
|
// NOTHING
|
1718
|
}
|
1719
|
}
|
1720
|
}
|
1721
|
if($is_new_combination){
|
1722
|
unset($reg_type_labels["taxon"]);
|
1723
|
}
|
1724
|
}
|
1725
|
if(isset($registration_dto->orderdTypeDesignationWorkingSets)){
|
1726
|
$reg_type_labels[] = t("new nomenclatural type");
|
1727
|
}
|
1728
|
return $reg_type_labels;
|
1729
|
}
|
1730
|
|
1731
|
/**
|
1732
|
* Collects and deduplicates the type designations associated with the passes synonyms.
|
1733
|
*
|
1734
|
* @param $synonymy_group
|
1735
|
* An array containing a homotypic or heterotypic group of names.
|
1736
|
* @param $accepted_taxon_name_uuid
|
1737
|
* The uuid of the accepted taxon name. Optional parameter which is required when composing
|
1738
|
* the information for the homotypic group. In this case the accepted taxon is not included
|
1739
|
* in the $synonymy_group and must therefor passed in this second parameter.
|
1740
|
*
|
1741
|
* @return array
|
1742
|
* The type designations
|
1743
|
*/
|
1744
|
function type_designations_for_synonymy_group($synonymy_group, $accepted_taxon_name_uuid = null)
|
1745
|
{
|
1746
|
if (count($synonymy_group) > 0) {
|
1747
|
$name_uuid = array_pop($synonymy_group)->name->uuid;
|
1748
|
} else {
|
1749
|
$name_uuid = $accepted_taxon_name_uuid;
|
1750
|
}
|
1751
|
if ($name_uuid) {
|
1752
|
$type_designations = cdm_ws_get(CDM_WS_PORTAL_NAME_TYPEDESIGNATIONS_IN_HOMOTYPICAL_GROUP, $name_uuid);
|
1753
|
if ($type_designations) {
|
1754
|
return $type_designations;
|
1755
|
}
|
1756
|
}
|
1757
|
|
1758
|
return array();
|
1759
|
}
|
1760
|
|
1761
|
|
1762
|
/**
|
1763
|
* Compares two SpecimenTypeDesignations
|
1764
|
*
|
1765
|
* @param object $a
|
1766
|
* A SpecimenTypeDesignation.
|
1767
|
* @param object $b
|
1768
|
* SpecimenTypeDesignation.
|
1769
|
*/
|
1770
|
function compare_specimen_type_designation($a, $b) {
|
1771
|
|
1772
|
$cmp_by_status = compare_type_designations_by_status($a,$b);
|
1773
|
if($cmp_by_status !== 0){
|
1774
|
return $cmp_by_status;
|
1775
|
}
|
1776
|
|
1777
|
$aQuantifier = FALSE;
|
1778
|
$bQuantifier = FALSE;
|
1779
|
if ($aQuantifier == $bQuantifier) {
|
1780
|
// Sort alphabetically.
|
1781
|
$a_text = isset($a->typeSpecimen->titleCache) ? preg_replace('/[\[\]\"]/', '', $a->typeSpecimen->titleCache) : '';
|
1782
|
$b_text = isset($b->typeSpecimen->titleCache) ? preg_replace('/[\[\]\"]/', '', $b->typeSpecimen->titleCache) : '';
|
1783
|
return strcasecmp($a_text, $b_text);
|
1784
|
}
|
1785
|
return ($aQuantifier < $bQuantifier) ? -1 : (($aQuantifier > $bQuantifier) ? 1 : 0);
|
1786
|
}
|
1787
|
|
1788
|
/**
|
1789
|
* Compares the status of two TypeDesignations
|
1790
|
*
|
1791
|
* @param object $a
|
1792
|
* A TypeDesignation
|
1793
|
* @param object $b
|
1794
|
* TypeDesignation
|
1795
|
*/
|
1796
|
function compare_type_designations_by_status($a, $b) {
|
1797
|
$status_a = isset($a->typeStatus) ? $a->typeStatus : null;
|
1798
|
$status_b = isset($b->typeStatus) ? $b->typeStatus : null;
|
1799
|
return compare_type_designation_status($status_a, $status_b);
|
1800
|
}
|
1801
|
|
1802
|
/**
|
1803
|
* Compares two TypeDesignationStatusBase
|
1804
|
*
|
1805
|
* @param object $a
|
1806
|
* A TypeDesignationStatusBase.
|
1807
|
* @param object $b
|
1808
|
* TypeDesignationStatusBase.
|
1809
|
*/
|
1810
|
function compare_type_designation_status($a, $b) {
|
1811
|
$type_status_order = type_status_order();
|
1812
|
$aQuantifier = FALSE;
|
1813
|
$bQuantifier = FALSE;
|
1814
|
if (isset($a->label) && isset($b->label)) {
|
1815
|
$aQuantifier = array_search($a->label, $type_status_order);
|
1816
|
$bQuantifier = array_search($b->label, $type_status_order);
|
1817
|
}
|
1818
|
return ($aQuantifier < $bQuantifier) ? -1 : (($aQuantifier > $bQuantifier) ? 1 : 0);
|
1819
|
}
|
1820
|
|
1821
|
/**
|
1822
|
* Compares the two TextualTypeDesignations
|
1823
|
*
|
1824
|
* @param object $a
|
1825
|
* A TextualTypeDesignations.
|
1826
|
* @param object $b
|
1827
|
* TextualTypeDesignations.
|
1828
|
*/
|
1829
|
function compare_textual_type_designation($a, $b) {
|
1830
|
|
1831
|
$cmp_by_status = compare_type_designations_by_status($a,$b);
|
1832
|
if($cmp_by_status !== 0){
|
1833
|
return $cmp_by_status;
|
1834
|
}
|
1835
|
|
1836
|
$aQuantifier = FALSE;
|
1837
|
$bQuantifier = FALSE;
|
1838
|
if ($aQuantifier == $bQuantifier) {
|
1839
|
// Sort alphabetically.
|
1840
|
$a_text = isset($a->text_L10n->text) ? $a->text_L10n->text : '';
|
1841
|
$b_text = isset($b->text_L10n->text) ? $b->text_L10n->text : '';
|
1842
|
return strcasecmp($a_text, $b_text);
|
1843
|
}
|
1844
|
return ($aQuantifier < $bQuantifier) ? -1 : (($aQuantifier > $bQuantifier) ? 1 : 0);
|
1845
|
}
|
1846
|
|
1847
|
|
1848
|
/**
|
1849
|
* Compares two SpecimenTypeDesignation status labels
|
1850
|
*
|
1851
|
* @param string $a
|
1852
|
* A TypeDesignationStatus label.
|
1853
|
* @param string $b
|
1854
|
* A TypeDesignationStatus label.
|
1855
|
*/
|
1856
|
function compare_type_designation_status_labels($a, $b) {
|
1857
|
|
1858
|
$type_status_order = type_status_order();
|
1859
|
|
1860
|
$aQuantifier = FALSE;
|
1861
|
$bQuantifier = FALSE;
|
1862
|
if (isset($a) && isset($b)) {
|
1863
|
$aQuantifier = array_search($a, $type_status_order);
|
1864
|
$bQuantifier = array_search($b, $type_status_order);
|
1865
|
}
|
1866
|
return ($aQuantifier < $bQuantifier) ? -1 : 1;
|
1867
|
}
|
1868
|
|
1869
|
/**
|
1870
|
* @return array
|
1871
|
*/
|
1872
|
function type_status_order()
|
1873
|
{
|
1874
|
/*
|
1875
|
This is the desired sort order as of now: Holotype Isotype Lectotype
|
1876
|
Isolectotype Syntype.
|
1877
|
TODO Basically, what we are trying to do is, we define
|
1878
|
an ordered array of TypeDesignation-states and use the index of this array
|
1879
|
for comparison. This array has to be filled with the cdm- TypeDesignation
|
1880
|
states and the order should be parameterisable inside the dataportal.
|
1881
|
*/
|
1882
|
// Make that static for now.
|
1883
|
$type_status_order = array(
|
1884
|
'Epitype',
|
1885
|
'Holotype',
|
1886
|
'Isotype',
|
1887
|
'Lectotype',
|
1888
|
'Isolectotype',
|
1889
|
'Syntype',
|
1890
|
'Paratype'
|
1891
|
);
|
1892
|
return $type_status_order;
|
1893
|
}
|
1894
|
|
1895
|
/**
|
1896
|
* Return HTML for the lectotype citation with the correct layout.
|
1897
|
*
|
1898
|
* This function prints the lectotype citation with the correct layout.
|
1899
|
* Lectotypes are renderized in the synonymy tab of a taxon if they exist.
|
1900
|
*
|
1901
|
* @param mixed $typeDesignation
|
1902
|
* Object containing the lectotype citation to print.
|
1903
|
*
|
1904
|
* @return string
|
1905
|
* Valid html string.
|
1906
|
*/
|
1907
|
function type_designation_citation_layout($typeDesignation, $footnote_separator = ',') {
|
1908
|
$res = '';
|
1909
|
$citation = $typeDesignation->citation;
|
1910
|
$pages = $typeDesignation->citationMicroReference;
|
1911
|
if(isset($typeDesignation->typeStatus->uuid) && isset($typeDesignation->typeStatus->representation_L10n)) {
|
1912
|
if ( $typeDesignation->typeStatus->uuid == UUID_NTD_ORIGINAL_DESIGNATION || $typeDesignation->typeStatus->uuid == UUID_NTD_MONOTYPY) {
|
1913
|
$res = ' (' . $typeDesignation->typeStatus->representation_L10n . ')';
|
1914
|
return $res;
|
1915
|
}
|
1916
|
}
|
1917
|
|
1918
|
if ($citation) {
|
1919
|
// $type = $typeDesignation_citation->type;
|
1920
|
$year = isset($citation->datePublished->start) ? substr($citation->datePublished->start, 0, 4) : '';
|
1921
|
$author = isset($citation->authorship->titleCache) ? $citation->authorship->titleCache : '';
|
1922
|
$res .= ' (designated by ';
|
1923
|
$res .= $author;
|
1924
|
$res .= ($year ? ' ' . $year : '');
|
1925
|
$res .= ($pages ? ': ' . $pages : '');
|
1926
|
// $res .= ')';
|
1927
|
|
1928
|
// footnotes should be rendered in the parent element so we
|
1929
|
// are relying on the FootnoteListKey set there
|
1930
|
$fkey_typeDesignation = FootnoteManager::addNewFootnote(RenderHints::getFootnoteListKey(), $typeDesignation->citation->titleCache);
|
1931
|
$res .= theme('cdm_footnote_key', array(
|
1932
|
'footnoteKey' => $fkey_typeDesignation,
|
1933
|
'separator' => $footnote_separator,
|
1934
|
'highlightable' => TRUE,
|
1935
|
'separator_off' => TRUE,
|
1936
|
)) . ')';
|
1937
|
}
|
1938
|
return $res;
|
1939
|
}
|
1940
|
|
1941
|
/**
|
1942
|
* Creates markup for the status of a type designation. In case the status or its representation is missing the label will be set to "Type"
|
1943
|
*
|
1944
|
* @param $type_designation
|
1945
|
* @return string
|
1946
|
*/
|
1947
|
function type_designation_status_label_markup($type_designation)
|
1948
|
{
|
1949
|
return '<span class="type-status">'
|
1950
|
. ((isset($type_designation->typeStatus->representation_L10n)) ? ucfirst($type_designation->typeStatus->representation_L10n) : t('Type')) . '</span>'
|
1951
|
;
|
1952
|
}
|