Project

General

Profile

Download (4.4 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/**
3
 * @file
4
 * Reference theming functions.
5
 *
6
 * @copyright
7
 *   (C) 2007-2012 EDIT
8
 *   European Distributed Institute of Taxonomy
9
 *   http://www.e-taxonomy.eu
10
 *
11
 *   The contents of this module are subject to the Mozilla
12
 *   Public License Version 1.1.
13
 * @see http://www.mozilla.org/MPL/MPL-1.1.html
14
 */
15

    
16

    
17
/**
18
 * Creates a HTML representations for a CDM Reference instance..
19
 *
20
 * Used by:
21
 * - theme_cdm_typedesignations
22
 * - cdm_reference_pager
23
 * - cdm_taxonRelationships
24
 *
25
 * @param array $variables
26
 *   An associative array containing:
27
 *   - reference
28
 *   - microReference
29
 *   - doLink:
30
 *      Whether to create a link to the reference page, links to the reference URI or DOI are always
31
 *      created when this data is available
32
 *   - referenceStyle: the value "zoology" will cause a specific rendeting of the
33
 *      reference suitable for zoological publications.
34
 *
35
 * @return string
36
 *    the markup for the reference
37
 *
38
 * @ingroup themeable
39
 */
40
function theme_cdm_reference($variables) {
41
  $reference = $variables['reference'];
42
  $microReference = $variables['microReference'];
43
  $doLink = $variables['doLink'];
44
  $referenceStyle = $variables['referenceStyle'];
45

    
46
  if (!isset($reference->authorship)) {
47
    $author_team = cdm_ws_get(CDM_WS_REFERENCE_AUTHORTEAM, $reference->uuid);
48
  }
49
  else {
50
    $author_team = $reference->authorship;
51
  }
52

    
53
  if ($referenceStyle == "zoology") {
54
    $year = '';
55
    if (isset($reference->datePublished->start)) {
56
      $year = partialToYear($reference->datePublished->start);
57
    }
58
    $citation = $author_team->titleCache . (!empty($year) ? '. ' . $year : '');
59
  }
60
  else {
61
    $citation = $reference->titleCache;
62
  }
63

    
64
  if (isset($doLink) && $doLink === TRUE) {
65
    $out = '<span class="reference">';
66
    $out .= l($citation, path_to_reference($reference->uuid), array(
67
      'attributes' => array(
68
        "class" => "reference",
69
      ),
70
      'absolute' => TRUE,
71
      'html' => TRUE,
72
    ));
73
    $out .= '</span>';
74
  }
75
  else {
76
    $out = '<span class="reference">' . $citation . '</span>';
77
  }
78

    
79
  if (!empty($microReference)) {
80
    $out .= ": " . $microReference;
81
  }
82

    
83
  if(isset($reference->doi)){
84
    $out .= cdm_doi($reference->doi);
85
  }
86

    
87
  if (isset($reference->uri)){
88
    $out .= cdm_external_uri($reference->uri);
89
  }
90

    
91
  return $out;
92
}
93

    
94
/**
95
 * @param $reference
96
 * @param $out
97
 * @return string
98
 */
99
function cdm_external_uri($uri, $iconified = true)
100
{
101
  if (!empty($uri)) {
102
    if($iconified){
103
      return l(font_awesome_icon_markup('fa-external-link', array('class' => array('superscript'))), $uri, array('html' => TRUE));
104
    } else {
105
      return l($uri, $uri);
106
    }
107
  }
108
}
109

    
110
/**
111
 * Creates markup for a CDM Doi entity.
112
 *
113
 * @param $doi
114
 *  The CDM DOI
115
 *
116
 * @return string
117
 *  Markup
118
 */
119
function cdm_doi($doi, $iconified = true) {
120

    
121
  if (!empty($doi)) {
122

    
123
    $doi_resolve_uri = 'http://doi.org/' . $doi->prefix;
124
    if (isset($doi->suffix)) {
125
      $doi_resolve_uri .= '/' . $doi->suffix;
126
    }
127
    if($iconified){
128
      return l(font_awesome_icon_markup('fa-external-link-square', array('class' => array('superscript'))), $doi_resolve_uri, array('html' => TRUE));
129
    } else {
130
      return l($doi_resolve_uri, $doi_resolve_uri);
131
    }
132
  }
133

    
134
}
135

    
136
/**
137
 * @todo Please document this function.
138
 * @see http://drupal.org/node/1354
139
 */
140
function theme_cdm_OriginalSource($variables) {
141
  $out = '';
142
  $source = $variables['source'];
143
  $do_link_to_reference = $variables['doLink'];
144
  $do_link_to_name_used_in_source = $variables['do_link_to_name_used_in_source'];
145

    
146
  if (isset($source->citation)) {
147
    $out = theme('cdm_reference', array(
148
        'reference' => $source->citation,
149
        'microReference' => $source->citationMicroReference,
150
        'doLink' => $do_link_to_reference,
151
    ));
152

    
153
    $name_in_source_render_array = compose_name_in_source($source, $do_link_to_name_used_in_source);
154
    if(!empty($name_in_source_render_array)) {
155
      $out .=  ' <span class="nameUsedInSource">(' . t('as') . ' ' . $name_in_source_render_array['#markup'] . ')</span>';
156
    }
157

    
158
    $id_with_namespace = '';
159
    if( isset($source->idNamespace) && $source->idNamespace ) {
160
      $id_with_namespace = $source->idNamespace . '/';
161
    }
162
    if( isset($source->idInSource) && $source->idInSource ) {
163
      $id_with_namespace .= $source->idInSource;
164
    } else {
165
      $id_with_namespace = NULL;
166
    }
167

    
168
    if($id_with_namespace){
169
      $out .=  ' <span class="idInSource">[' . $id_with_namespace . ']</span>';
170
    }
171
  }
172
  return $out;
173
}
(7-7/9)