Project

General

Profile

Download (23.9 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2

    
3
/**
4
 * @file
5
 * Functions for dealing with CDM entities from the package model.taxon
6
 *
7
 * @copyright
8
 *   (C) 2007-2016 EDIT
9
 *   European Distributed Institute of Taxonomy
10
 *   http://www.e-taxonomy.eu
11
 *
12
 *   The contents of this module are subject to the Mozilla
13
 *   Public License Version 1.1.
14
 * @see http://www.mozilla.org/MPL/MPL-1.1.html
15
 *
16
 * @author
17
 *   - Andreas Kohlbecker <a.kohlbecker@BGBM.org>
18
 */
19

    
20
/**
21
 * @defgroup compose Compose functions
22
 * @{
23
 * Functions which are composing Drupal render arrays
24
 *
25
 * The cdm_dataportal module needs to compose rather complex render arrays from
26
 * the data returned by the CDM REST service. The compose functions are
27
 * responsible for creating the render arrays.
28
 *
29
 * All these functions are also implementations of the compose_hook()
30
 * which is used in the proxy_content() function.
31
 * @}
32
 */
33

    
34
define('TAXON_TYPE_SYNONYM', 'Synonym');
35
define('TAXON_TYPE_MISAPPLIEDNAME', 'misapplied-name');
36

    
37
/**
38
 * Returns HTML for misapplied names and invalid designations.
39
 *
40
 * Both relation types are currently treated the same!
41
 *
42
 * @param object taxonRelationships
43
 *   A TaxonRelationshipsDTO, see taxon/{uuid}/taxonRelationshipsDTO
44
 *
45
 * @param object focusedTaxon
46
 *  The taxon being in the focus of the application
47
 *
48
 * @return string
49
 *    the rendered html
50
 */
51
function cdm_taxonRelationships($taxonRelationshipsDTO, $focusedTaxon){
52

    
53
  if (!$taxonRelationshipsDTO || $taxonRelationshipsDTO->size < 1) {
54
    return null;
55
  }
56

    
57
  RenderHints::pushToRenderStack('taxon_relationships');
58
  $footnote_list_key = 'taxon_relationships';
59
  RenderHints::setFootnoteListKey($footnote_list_key);
60

    
61
  $misapplied = array();
62
  $joined_refs = array();
63

    
64
  $taxon_relationship_types = variable_get(CDM_TAXON_RELATIONSHIP_TYPES, unserialize(CDM_TAXON_RELATIONSHIP_TYPES_DEFAULT));
65

    
66
  // Aggregate misapplied names having the same fullname:
67
  //  - deduplicate misapplied names, so that the same name it not shown multiple times in case it
68
  //    the duplicates only have different sensu references/author teams (see #5647)
69
  //  - show only the author team as short citation for the sec reference
70
  //  - show the according reference as footnote to this short citation
71
  //
72
  // Example:
73
  // "Xenoxylum foobar" sensu Grumbach¹; sensu Lem²
74
  //    1. Novel marsian species, Grumbach, 2022
75
  //    2. Flora solaris, Lem, 2019
76
  if (isset($taxonRelationshipsDTO->relations[0])) {
77
    foreach($taxonRelationshipsDTO->relations as $taxon_relation){
78

    
79
      if (in_array($taxon_relation->type->uuid, $taxon_relationship_types)) {
80

    
81
        if ($taxon_relation->type->uuid == UUID_MISAPPLIED_NAME_FOR || $taxon_relation->type->uuid == UUID_INVALID_DESIGNATION_FOR) {
82

    
83
          RenderHints::pushToRenderStack('misapplied_name_for'); // TODO the render path string should in future come from $taxonRelation->type->...
84

    
85
          // full name with relation symbol, rel sec as de-dublication key
86
          // the sensu part will be removed from the key below in case it is present
87
          $symbol_text = join(' ', cdm_tagged_text_values($taxon_relation->taggedText, array('symbol')));
88
          $name_text = join(' ', cdm_tagged_text_values($taxon_relation->taggedText, array('name')));
89
          $appended_phrase_text = join(' ', cdm_tagged_text_values($taxon_relation->taggedText, array('appendedPhrase')));
90

    
91
          $full_name_key = cdm_tagged_text_to_string($taxon_relation->taggedText, array('symbol', 'appendedPhrase'));
92
          $full_name_key = $name_text . ' ' . str_replace($name_text, '', $full_name_key) . ' ' . $symbol_text;
93

    
94
          // remove/extract appendedPhrase, secReference, relSecReference and add placeholders if needed
95
          tagged_text_extract($taxon_relation->taggedText, 'appendedPhrase');
96
          $sensu_tagged_text = tagged_text_extract_secref($taxon_relation->taggedText, "secReference", true);
97
          $relsec_tagged_text = tagged_text_extract_secref($taxon_relation->taggedText, "relSecReference", true);
98

    
99
          if (isset($sensu_tagged_text[1])) {
100
            // for de-dublicationeverything else needs to be equal except for appendedPhrase + MAN.sec + MAN.secDetail. see #7658#note-21
101
            $full_name_key = str_replace(cdm_tagged_text_to_string($sensu_tagged_text), ' ', $full_name_key);
102
            $appended_phrase_text = $appended_phrase_text . array_shift($sensu_tagged_text)->text; // remove first element which contains the "sensu", this will be added later in this code
103
            $sensu_citation_detail = trim(join(' ', cdm_tagged_text_values($sensu_tagged_text, array('secMicroReference'))));
104
            $sensu_citation_short_markup = cdm_tagged_text_to_markup($sensu_tagged_text);
105
            $sensu_citation_short = cdm_tagged_text_to_string($sensu_tagged_text);
106
            $sensu_uuid = $sensu_tagged_text[0]->entityReference->uuid;
107
            $full_name_key = preg_replace('/\s+/', ' ', $full_name_key); // sanitize multiple whitespace characters
108
            $misapplied[$full_name_key]['sensu_uuids'][] = array('uuid' => $sensu_uuid, 'prefix' => $appended_phrase_text, 'citation_detail' => $sensu_citation_detail);
109
            $ref_key = $sensu_uuid .($sensu_citation_detail ? '#' . $sensu_citation_detail : '');
110
            if (!isset($joined_refs[$ref_key])) {
111
              $joined_refs[$ref_key] = array(
112
                'order_by_key' => $sensu_citation_short,
113
                'markup' => $sensu_citation_short_markup // the footnote key will be appended later
114
              );
115
            }
116
          } else if($appended_phrase_text) {
117
            // appended phrase without reference
118
            $full_name_key = preg_replace('/\s+/', ' ', $full_name_key); // sanitize multiple whitespace characters
119
            $misapplied[$full_name_key]['sensu_uuids'][] = array('uuid' => null, 'prefix' => $appended_phrase_text);
120
          }
121

    
122
          if (isset($relsec_tagged_text[1])) {
123
            array_shift($relsec_tagged_text); // remove first element which contains the "err. sec", this will be added later in this code
124
            $relsec_citation_detail = trim(join(' ', cdm_tagged_text_values($relsec_tagged_text, array('secMicroReference'))));
125
            $relsec_citation_short_markup = cdm_tagged_text_to_markup($relsec_tagged_text);
126
            $relsec_citation_short = cdm_tagged_text_to_string($relsec_tagged_text);
127
            $relsec_uuid = $relsec_tagged_text[0]->entityReference->uuid;
128
            $misapplied[$full_name_key]['relsec_uuids'][] = $relsec_uuid;
129
            $ref_key = $relsec_uuid . ($relsec_citation_detail ? '#' . $relsec_citation_detail : '');
130
            if (!isset($joined_refs[$ref_key])) {
131
              $joined_refs[$ref_key] = array(
132
                'order_by_key' => $relsec_citation_short,
133
                'markup' => $relsec_citation_short_markup // the footnote key will be appended later
134
              );
135
            }
136
          }
137

    
138
          if (!isset($misapplied[$full_name_key]['out'])) {
139
            $misapplied[$full_name_key]['out'] = cdm_tagged_text_to_markup($taxon_relation->taggedText);
140
          } else {
141
            // We need to add the anchors for all of the other misapplied names not
142
            // being rendered explicitly.
143
            $misapplied[$full_name_key]['out'] = uuid_anchor($taxon_relation->taxonUuid, $misapplied[$full_name_key]['out']);
144
          }
145
        } else {
146
          RenderHints::pushToRenderStack('other_taxon_relationship');
147
          // All relationship types except misapplied_name_for and invalid_designation_for.
148
          $taxon_relationships_lines[] = cdm_tagged_text_to_markup($taxon_relation->taggedText);
149
        }
150
        RenderHints::popFromRenderStack();
151
      }
152
    } // END loop over $taxonRelationshipsDTO->relations
153
  }
154

    
155
  // Sort the $joined_refs and create footnotes and footnote keys.
156
  uasort($joined_refs, function($a, $b) {
157
    if ($a['order_by_key'] == $b['order_by_key']) {
158
      return 0;
159
    }
160
    return ($a['order_by_key'] < $b['order_by_key']) ? -1 : 1;
161
  });
162

    
163

    
164
  foreach ($joined_refs as $ref_key => $sensu_strings) {
165
    if(!empty($sensu_strings)) {
166
      $ref_key_tokens = explode('#', $ref_key);
167
      $sensu_uuid = $ref_key_tokens[0];
168
      $sensu_reference = cdm_ws_get(CDM_WS_REFERENCE, $sensu_uuid);
169
      if(!$sensu_reference){
170
        drupal_set_message("Problem fetching sensu reference with uuid " . $sensu_uuid, 'error');
171
      }
172
      if($sensu_strings['order_by_key'] != $sensu_reference->titleCache){
173
        $footnote_key = FootnoteManager::addNewFootnote($footnote_list_key, $sensu_reference->titleCache);
174
        $footnote_key = theme('cdm_footnote_key', array('footnoteKey' => $footnote_key));
175
        $joined_refs[$ref_key]['markup'] = '<span class="sensu">' . $sensu_strings['markup'] . $footnote_key . '</span>';
176
      }
177
    }
178
  }
179

    
180
  // ---- Generate output ---- //
181
  $out = '<div class="taxon-relationships">';
182
  if (count($misapplied) > 0) {
183
    ksort($misapplied); // order the misapplied by scientific name
184
    $out .= '<ul class="misapplied">';
185

    
186
    // create the list entries per misapplied name
187
    foreach ($misapplied as $misapplied_name) {
188
      $misapplied_name_markup = $misapplied_name['out'];
189
      // all sensu and auct. for this MAN
190
      if (isset($misapplied_name['sensu_uuids'])) {
191
        $sensu_refs_with_fkey = array();
192
        foreach ($misapplied_name['sensu_uuids'] as $sensu_data) {
193
          if($sensu_data['uuid']){
194
            $joined_ref_key = $sensu_data['uuid'] . ($sensu_data['citation_detail'] ? '#' .  $sensu_data['citation_detail'] : '');
195
            $sensu_refs_with_fkey[$sensu_data['prefix'] . $joined_refs[$joined_ref_key]['order_by_key']] = $sensu_data['prefix'] . $joined_refs[$joined_ref_key]['markup'];
196
          } else {
197
            $sensu_refs_with_fkey[$sensu_data['prefix']] = $sensu_data['prefix'];
198
          }
199
        }
200
        ksort($sensu_refs_with_fkey);
201
        $sensu_refs_with_fkey_markup = join('; ', $sensu_refs_with_fkey);
202
        $misapplied_name_markup = str_replace('{PLACEHOLDER_secReference}', $sensu_refs_with_fkey_markup, $misapplied_name_markup);
203
      }
204

    
205
      // append the err. sec. if there is any for this MAN
206
      if (isset($misapplied_name['relsec_uuids'])) {
207
        $relsec_refs_with_fkey = array();
208
        foreach ($misapplied_name['relsec_uuids'] as $relsec_uuid) {
209
          $relsec_refs_with_fkey[$joined_refs[$relsec_uuid]['order_by_key']] = $joined_refs[$relsec_uuid]['markup'];
210
        }
211
        ksort($relsec_refs_with_fkey);
212
        $relsec_refs_with_fkey_markup = join('; ', $relsec_refs_with_fkey);
213
        $misapplied_name_markup = str_replace('{PLACEHOLDER_relSecReference}', ', err. sec. ' . $relsec_refs_with_fkey_markup, $misapplied_name_markup);
214
      }
215
      // final line
216
      $out .= '<li class="synonym"><span class="misapplied">' . $misapplied_name_markup . ' </span></li>';
217
    }
218
    $out .= '</ul>';
219
  }
220

    
221
  if (isset($taxon_relationships_lines) && is_array($taxon_relationships_lines) && count($taxon_relationships_lines) > 0) {
222
    $out .= '<ul class="taxonRelationships">';
223
    foreach ($taxon_relationships_lines as $taxon_relationship_line) {
224
      $out .= '<li class="synonym">' . $taxon_relationship_line . '</li>';
225
    }
226
    $out .= '</ul>';
227
  }
228

    
229
  $footnotes = theme('cdm_footnotes', array('footnoteListKey' => $footnote_list_key, 'enclosingTag' => 'li'));
230
  $footnotes .= theme('cdm_annotation_footnotes', array('footnoteListKey' => $footnote_list_key, 'enclosingTag' => 'li'));
231

    
232
  $out .= '<ul class="footnotes">' . $footnotes . '</ul>';
233
  $out .= '</div>';
234

    
235
  RenderHints::popFromRenderStack();
236
  return $out;
237
}
238

    
239
/**
240
 * Renders a representation of the given taxon relationship.
241
 *
242
 * According name relationships are also being rendered.
243
 *
244
 * @param $taxon
245
 *  The CDM TaxonBase entity
246
 * @param $reltype_uuid
247
 *  The UUID of the TaxonRelationshipType
248
 * @param $relsign
249
 *  Optional. Can be  used to override the internal decision strategy on finding a suitable icon for the relationship
250
 * @param $reltype_representation
251
 *   Optional: Defines the value for the title attribute of the html element enclosing the relsign
252
 * @param $doubtful
253
 *   TODO
254
 * @param $doLinkTaxon
255
 *   The taxon will be rendered as clickable link when true.
256
 *
257
 * @return string
258
 *   Markup for the taxon relationship.
259
 *
260
 * @throws Exception
261
 */
262
function cdm_related_taxon($taxon, $reltype_uuid = NULL, $relsign = NULL, $reltype_representation = NULL, $doubtful=false, $doLinkTaxon = FALSE) {
263
  static $relsign_homo = '≡';
264
  static $relsign_hetero = '=';
265
  static $relsign_invalid = '&ndash;';
266
  static $nom_status_invalid_type_uuids =  array(
267
    UUID_NOMENCLATURALSTATUS_TYPE_INVALID,
268
    UUID_NOMENCLATURALSTATUS_TYPE_NUDUM,
269
    UUID_NOMENCLATURALSTATUS_TYPE_COMBINATIONINVALID,
270
    UUID_NOMENCLATURALSTATUS_TYPE_PROVISIONAL
271
  );
272

    
273
  // 'taxonRelationships';
274
  $footnoteListKey = NULL;
275

    
276
  $skip_tags = array();
277

    
278
  $is_invalid = false;
279

    
280
  if (!$relsign) {
281

    
282
    switch ($reltype_uuid) {
283
      case UUID_HETEROTYPIC_SYNONYM_OF:
284
      case UUID_SYNONYM_OF:
285
        $relsign = $relsign_hetero;
286
        break;
287

    
288
      case UUID_HOMOTYPIC_SYNONYM_OF:
289
        $relsign = $relsign_homo;
290
        break;
291

    
292
      case UUID_MISAPPLIED_NAME_FOR:
293
      case UUID_INVALID_DESIGNATION_FOR:
294
        $skip_tags[] = 'authors';
295
        $is_invalid = true;
296
        $relsign = $relsign_invalid;
297

    
298
        break;
299

    
300
      default:
301
        $relsign = $relsign_invalid;
302
    }
303

    
304
  }
305

    
306
  if($doubtful) {
307
    $relsign = '?' . $relsign;
308
  }
309

    
310
  /*
311
  Names with status invalid or nudum are to be displayed with the
312
  $relsign_invalid, these names appear at the end of all names in their
313
  homotypic group (ordered correctly by the java cdm_lib).
314
  */
315
  if (isset($taxon->name->status) && is_array($taxon->name->status)) {
316
    foreach ($taxon->name->status as $status) {
317
      if (in_array($status->type->uuid , $nom_status_invalid_type_uuids)) {
318
        $relsign = $relsign_invalid;
319
        break;
320
      }
321
    }
322
  }
323

    
324
  // Now rendering starts ..
325
  RenderHints::pushToRenderStack('related_taxon');
326

    
327
  if (isset($taxon->name->nomenclaturalReference)) {
328
    $referenceUri = url(path_to_reference($taxon->name->nomenclaturalReference->uuid));
329
  }
330
  $taxonUri = '';
331
  if ($doLinkTaxon) {
332
    $taxonUri = url(path_to_taxon($taxon->uuid, "synonymy"));
333
  }
334
  // Printing the taxonName and the handling the special case of annotations.
335
  if (!isset($referenceUri)) {
336
    $referenceUri = FALSE;
337
  }
338
  $out_taxon_part = render_taxon_or_name($taxon, $taxonUri, $referenceUri, TRUE, FALSE, $skip_tags, $is_invalid);
339
  $taxon_footnotes = theme('cdm_annotations_as_footnotekeys',
340
    array('cdmBase_list' => array(
341
      $taxon->name,
342
      $taxon,
343
    ),
344
      'footnote_list_key' => $footnoteListKey)
345
  );
346

    
347
  $homonyms = cdm_name_relationships_of($taxon);
348

    
349
  $out = '<span class="relation_sign" title="' . $reltype_representation . '">' . $relsign . '</span>'
350
    . $out_taxon_part . $taxon_footnotes . ' '  . $homonyms;
351

    
352
  $out = uuid_anchor($taxon->uuid, $out);
353

    
354
  RenderHints::popFromRenderStack();
355

    
356
  return $out;
357
}
358

    
359

    
360
/**
361
 * Creates markup for a taxon which is the accepted of another one
362
 *
363
 * @param $accepted_for_uuid
364
 *   The uuid of the accepted taxon
365
 */
366
function cdm_accepted_for($accepted_for_uuid) {
367

    
368
  if(!is_uuid($accepted_for_uuid)){
369
    return '';
370
  }
371

    
372
  RenderHints::pushToRenderStack('acceptedFor');
373
  $out = '';
374

    
375
  $synonym = cdm_ws_get(CDM_WS_PORTAL_TAXON, $accepted_for_uuid);
376
  if ($synonym) {
377
    $out .= '<span class="acceptedFor">';
378
    $out .= t('is accepted for ');
379
    if (isset($synonym->name->nomenclaturalReference)) {
380
      $referenceUri = url(path_to_reference($synonym->name->nomenclaturalReference->uuid));
381
    }
382
    $out .= render_taxon_or_name($synonym->name, NULL, $referenceUri);
383
    $out .= theme('cdm_annotations_as_footnotekeys', array('cdmBase_list' => $synonym));
384
    $out .= '</span>';
385
  }
386
  RenderHints::popFromRenderStack();
387
  return $out;
388
}
389

    
390
/**
391
 * Compose function for a list of taxa.
392
 *
393
 * This function is for used to:
394
 *
395
 * 1. Display search results
396
 * 2. List the taxa for a taxon name in the name page.
397
 *
398
 * @param $taxon_list array
399
 *   The list of CDM Taxon entities. e.g. The records array as contained in a pager object.
400
 * @param $freetext_search_results array
401
 * @param $show_classification boolean
402
 *
403
 * @ingroup compose
404
 *
405
 */
406
function compose_list_of_taxa($taxon_list, $freetext_search_results = array(), $show_classification = false) {
407

    
408
  $unclassified_snippet = '<span class="unclassified">' . t('unclassified') . '</span>';
409

    
410
  RenderHints::pushToRenderStack('list_of_taxa');
411

    
412
  $gallery_settings = getGallerySettings(CDM_DATAPORTAL_SEARCH_GALLERY_NAME);
413

    
414
  $showMedia_taxa = $gallery_settings['cdm_dataportal_show_taxon_thumbnails'];
415
  $showMedia_synonyms = $gallery_settings['cdm_dataportal_show_synonym_thumbnails'];
416
  $searched_in_classification = cdm_dataportal_searched_in_classification();
417
  $searched_in_classification_uuid = null;
418
  if(isset($searched_in_classification->uuid)){
419
    $searched_in_classification_uuid = $searched_in_classification->uuid;
420
  }
421

    
422
  // .. Well, for sure not as performant as before, but better than nothing.
423
  $synonym_uuids = array();
424
  $misappied_uuids = array();
425
  foreach ($taxon_list as $taxon) {
426
    if ($taxon->class == "Synonym") {
427
      if (!array_key_exists($taxon->uuid, $synonym_uuids)) {
428
        $synonym_uuids[$taxon->uuid] = $taxon->uuid;
429
      }
430
    }
431
    elseif (!_cdm_dataportal_acceptedByCurrentView($taxon)) {
432
      // Assuming that it is a misappied name, will be further examined below.
433
      $misappied_uuids[$taxon->uuid] = $taxon->uuid;
434
    }
435
  }
436

    
437
  // Batch service not jet implemented:
438
  // $table_of_accepted = cdm_ws_property(CDM_WS_PORTAL_TAXON_ACCEPTED,
439
  // join(',', $synonym_uuids));
440
  // thus ...
441
  $table_of_accepted = array();
442

    
443
  foreach ($synonym_uuids as $relatedUuid) {
444
    $classification_filter = '';
445
    if($searched_in_classification_uuid){
446
      $classification_filter = 'classificationFilter=' . $searched_in_classification_uuid;
447
    }
448
    $table_of_accepted[$relatedUuid] = cdm_ws_get(
449
      CDM_WS_PORTAL_TAXON_ACCEPTED,
450
      array($relatedUuid),
451
      $classification_filter
452
    );
453
  }
454

    
455
  foreach ($misappied_uuids as $relatedUuid) {
456
    $taxonRelations = cdm_ws_get(CDM_WS_PORTAL_TAXON_RELATIONS, array(
457
      $relatedUuid,
458
    ));
459
    foreach ($taxonRelations as $relation) {
460
      if ($relation->type->uuid == UUID_MISAPPLIED_NAME_FOR && _cdm_dataportal_acceptedByCurrentView($relation->toTaxon)) {
461
        $table_of_accepted[$relatedUuid][] = $relation->toTaxon;
462
      }
463
    }
464
  }
465

    
466
  $out = '<div class="cdm-item-list" style="background-image: none;">';
467
  $itemCnt = -1;
468
  foreach ($taxon_list as $taxon) {
469
    $itemCnt++;
470
    if (isset($table_of_accepted[$taxon->uuid])) {
471
      // Its a synonym or misapplied name.
472
      $is_synonym = isset($synonym_uuids[$taxon->uuid]); //TODO better use the $taxon->class attribute?
473
      $taxon_type = $is_synonym ? TAXON_TYPE_SYNONYM :TAXON_TYPE_MISAPPLIEDNAME;
474

    
475
      $acceptedTaxa = $table_of_accepted[$taxon->uuid];
476

    
477
      if (!is_array($acceptedTaxa)) {
478
        $acceptedTaxa = array($acceptedTaxa);
479
      }
480

    
481
      foreach ($acceptedTaxa as $acceptedTaxon) {
482
        if (is_object($acceptedTaxon)) {
483

    
484
          $taxonUri = uri_to_synonym($taxon->uuid, $acceptedTaxon->uuid);
485
          $referenceUri = '';
486
          if (isset($acceptedTaxon->name->nomenclaturalReference)) {
487
            $referenceUri = url(path_to_reference($acceptedTaxon->name->nomenclaturalReference->uuid));
488
          }
489
          $taxon_or_name = $is_synonym ? $taxon->name : $taxon;
490
          // $taxon_or_name this is a trick to suppress the sec reference for synonyms
491
          // supplying the name will cause render_taxon_or_name() to not show the sec reference
492
          $out .= "<div class=\"item " . $taxon_type . "\">" . render_taxon_or_name($taxon_or_name, $taxonUri, $referenceUri);
493
          if($taxon_type == TAXON_TYPE_MISAPPLIEDNAME && is_object($taxon->sec)){
494
            if(isset($taxon->sec->authorship)){
495
              $authorship = $taxon->sec->authorship->titleCache;
496
            } else {
497
              $authorship = $taxon->sec->titleCache;
498
            }
499
            $out .=  ' sensu ' . $authorship;
500
          }
501
          if ($show_classification) {
502
            $classifications = get_classifications_for_taxon($taxon);
503
            $classification_titles = array();
504
            foreach ($classifications as $classification) {
505
              if (isset($classification->titleCache)) {
506
                $classification_titles[] = $classification->titleCache;
507
              }
508
            }
509
            if (count($classification_titles) == 0) {
510
              $classification_titles[] = $unclassified_snippet;
511
            }
512
            $out .= '<span class="classifications"><span class="separator"> : </span>' . implode(', ', $classification_titles) . '</span>';
513
          }
514
          $out .= theme('cdm_annotations_as_footnotekeys', array('cdmBase_list' => $taxon));
515
          if ($showMedia_synonyms) {
516
            $out .= theme('cdm_taxon_list_thumbnails', array('taxon' => $acceptedTaxon));
517
          }
518
        }
519
      }
520
    }
521
    else {
522
      // Its a Taxon.
523
      $taxonUri = url(path_to_taxon($taxon->uuid));
524
      $referenceUri = '';
525
      if (isset($taxon->name->nomenclaturalReference)) {
526
        $referenceUri = url(path_to_reference($taxon->name->nomenclaturalReference->uuid));
527
      }
528
      $out .= '<div class="item Taxon">' . render_taxon_or_name($taxon, $taxonUri, $referenceUri);
529
      if ($show_classification) {
530
        $classifications = get_classifications_for_taxon($taxon);
531
        $classification_titles = array();
532
        foreach ($classifications as $classification) {
533
          if (isset($classification->titleCache)) {
534
            $classification_titles[] = $classification->titleCache;
535
          }
536
        }
537
        if(count($classification_titles) == 0){
538
          $classification_titles[] = $unclassified_snippet;
539
        }
540
        $out .= '<span class="classifications"><span class="separator"> : </span>' . implode(', ', $classification_titles) . '</span>';
541
      }
542
      $out .= theme('cdm_annotations_as_footnotekeys', array('cdmBase_list' => $taxon));
543

    
544
      if ($showMedia_taxa) {
545
        $out .= theme('cdm_taxon_list_thumbnails', array('taxon' => $taxon));
546
      }
547
    }
548

    
549
    /*
550
     * the score field will be empty in case of MultiTermQueries like
551
     * WildcardQueries, since these are  constant score by default
552
     * since Lucene 2.9
553
     */
554
    if(isset($freetext_search_results[$itemCnt]) && $freetext_search_results[$itemCnt]->score && $freetext_search_results[$itemCnt]->maxScore){
555
      $percentage =  ( $freetext_search_results[$itemCnt]->score / $freetext_search_results[$itemCnt]->maxScore ) * 100;
556
      $out .= '<div class="score-bar"><div class="score-bar-indicator" style="width:' . $percentage .'% "></div></div>';
557
      $out .= '<div class="score-bar-value">' . number_format($percentage, 2) .'%</div>';
558
    }
559

    
560
    // Render highlighted fragments, these are made available by free text
561
    // searches.
562
    if (isset($freetext_search_results[$itemCnt]->fieldHighlightMap)) {
563
      $field_fragments = (array) $freetext_search_results[$itemCnt]->fieldHighlightMap;
564
      if (count($field_fragments) > 0) {
565
        $fragments_out = '';
566
        foreach ($field_fragments as $fieldName => $fragments) {
567
          $fragments_out .= '... <span class="' . $fieldName. '">' . filter_xss(join(" ... ", $fragments), array('b') ) . '</span>';
568
        }
569
        $out .= '<div class="fragment_highlight">' . $fragments_out . ' ...</div>';
570
      }
571
    }
572

    
573
    $out .= '</div>';
574
  }
575

    
576
  $out .= '</div>';
577
  RenderHints::popFromRenderStack();
578

    
579
  return markup_to_render_array($out); // TODO create render array of all list items in function
580
}
581

    
582

    
583
/**
584
 * Compose function for the taxonomic children
585
 *
586
 * @param $taxon_uuid
587
 *    The uuuid of the taxon to compose the list of taxonomic children for
588
 * @return
589
 *   A drupal render array.
590
 *
591
 * @ingroup compose
592
 */
593
function compose_taxonomic_children($taxon_uuid){
594

    
595
  $render_array = array();
596
  
597
  if($taxon_uuid) {
598
    $children = cdm_ws_get(CDM_WS_PORTAL_TAXONOMY_CHILDNODES_OF_TAXON, array(
599
      get_current_classification_uuid(),
600
      $taxon_uuid
601
      ));
602
    if($children){
603
      $taxonomic_children = theme('cdm_taxontree', array('tree' => $children));
604
      $render_array = markup_to_render_array($taxonomic_children);
605
    }
606
  }
607
  return $render_array;
608
}
609

    
(10-10/10)