Project

General

Profile

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

    
19
/**
20
 * Returns an array of render array entries for a HTML description list.
21
 *
22
 * @see theme_description_list()
23
 *
24
 * @param array $rights_list
25
 *   array of CDM Rights entities
26
 *
27
 * @return array
28
 *   the render array of the groups for the HTML description list
29
 */
30
function cdm_rights_as_dl_groups($rights_list) {
31
  $copyrights = array();
32

    
33
  $licenses = array();
34
  $access_rights = array();
35
  $unknown = array();
36

    
37
  foreach ($rights_list as $right) {
38
    if (!is_object($right)) {
39
      continue;
40
    }
41
    $type_uuid = isset($right->type->uuid) ? $right->type->uuid : 'UNKNOWN';
42
    switch ($type_uuid) {
43

    
44
      case UUID_RIGHTS_COPYRIGHT:
45
        $text = '';
46
        if (isset($right->text) ){
47
          // sanitize potential '(c)' away
48
          $text  = preg_replace('/^\(c\)/', '', $right->text);
49
        } if (isset($right->agent) ){
50
          $text  .= (strlen($text) > 0 ? ', ' : '') . $right->agent->titleCache;
51
        }
52

    
53
        $copyrights[] = array('#markup' => '&copy; ' . $text);
54
        break;
55

    
56
      case UUID_RIGHTS_LICENCE:
57
        $license_str = '';
58
        if (isset($right->abbreviatedText)) {
59
          $license_str .= $right->abbreviatedText;
60
        }
61
        if (isset($right->uri)) {
62
          if (strlen($license_str) > 0) {
63
            $license_str = l($license_str, $right->uri);
64
          }
65
          else {
66
            $license_str = l(t('link'), $right->uri);
67
          }
68
        }
69
        if (strlen($license_str) > 0 && isset($right->text)) {
70
          $license_str .= ': ' . $right->text;
71
        }
72
        $licenses[] = array('#markup' => $license_str);
73
        break;
74

    
75
      case UUID_RIGHTS_ACCESS_RIGHTS:
76
        $access_rights[] = array('#markup' => $right->text);
77
        break;
78

    
79
      default:
80
        $unknown_groups[] = array('#markup' => $right->text);
81
    }
82
  }
83

    
84
  $groups = array();
85
  if (count($copyrights) > 0) {
86
    _description_list_group_add($groups, t('Copyright') . ':', $copyrights);
87
  }
88
  if (count($licenses) > 0) {
89
    _description_list_group_add($groups, t('Licenses') . ':', $licenses);
90
  }
91
  if (count($access_rights) > 0) {
92
    _description_list_group_add($groups, t('Access rights') . ':', $access_rights);
93
  }
94
  if (count($unknown) > 0) {
95
    _description_list_group_add($groups, t('Rights') . ':', $unknown);
96
  }
97

    
98
  return $groups;
99

    
100
}
101

    
102

    
103
/**
104
 * Provides the markup for an icon to represent a media which is associated with the given $feature.
105
 *
106
 * @param $feature
107
 *   the cdm Feature term
108
 * @param $media_url
109
 *   Optional, currently unused. May be used in future to display different
110
 *   icons for different media urls, like the fav-icon of the referenced
111
 * @return string
112
 *   The markup for the icon
113
 */
114
function media_feature_icon($feature, $media_url = NULL) {
115
  return font_awesome_icon_markup('fa-book', array('alt' => $feature->representation_L10n));
116
}
117

    
118
/**
119
 * Gets the metadata info such as title or artist and source references of a media file.
120
 *
121
 * The function tries at first to get all the info from the file metadata
122
 * and if it is not available look at the media file info stored at the database.
123
 *
124
 * @param mixed $media
125
 *   The media file object for which to get the metadata.
126
 *
127
 * @return array
128
 *   The array with the available specified metadata info.
129
 */
130
function read_media_metadata($media)
131
{
132

    
133
  $metadata = array(
134
    'title' => '',// Media_metadata and media.
135
    'artist' => '',// Media_metadata and media.
136
    'rights',// Media_metadata and media.
137
    'location',// Media_metadata.
138
    'filename' => '',// Media.
139
    'mediacreated' => '', // Media.
140
    'description' => ''
141
  );
142

    
143
  // Getting the media metadata.
144
  $media_metadata = cdm_ws_get(CDM_WS_MEDIA_METADATA, array($media->uuid));
145
  $media_metadata_aux = (array)$media_metadata;
146

    
147

    
148
  // Filename.
149
  if (!empty($media->representations[0]->parts[0]->uri)) {
150
    $fileUri = $media->representations[0]->parts[0]->uri;
151
    $filename = substr($fileUri, strrpos($fileUri, "/") + 1);
152
    $metadata['filename'] = $filename;
153
  } else {
154
    $metadata['filename'] = '';
155
  }
156

    
157
  // Title.
158
  if (!empty($media->title_L10n)) {
159
    $metadata['title'] = $media->title_L10n;
160
  } else if ($media->protectedTitleCache && !empty($media->titleCache)) {
161
    $metadata['title'] = $media->titleCache;
162
  } else if (!empty($media_metadata->ObjectName)) {
163
    $metadata['title'] = $media_metadata->ObjectName;
164
  } else if (!empty($media_metadata_aux['Object Name'])) {
165
    $metadata['title'] = $media_metadata_aux['Object Name'];
166
  } else if (!empty($media->titleCache)) {
167
    $metadata['title'] = $media->titleCache;
168
  }
169

    
170
  if (!empty($media->description_L10n)) {
171
    $metadata['description'] = $media->description_L10n;
172
  }
173

    
174
  // Artist.
175
  if (!empty($media->artist->titleCache)) {
176
    $metadata['artist'] = $media->artist->titleCache;
177
  } else if (!empty($media_metadata->Artist)) {
178
    $metadata['artist'] = '' . $media_metadata->Artist;
179
  }
180

    
181
  // Rights
182
  $metadata['rights'] = array();
183
  if (!empty($media_metadata->Copyright)) {
184
    $rightsObj = new stdClass();
185
    $rightsObj->type = new stdClass();
186
    $rightsObj->type->uuid = UUID_RIGHTS_COPYRIGHT;
187
    $rightsObj->type->titleCache = 'copyright';
188
    $rightsObj->type->representation_L10n = 'copyright';
189
    $rightsObj->type->text = $media_metadata->Copyright;
190
    $metadata['rights'][] = $rightsObj;
191
  }
192
  if (isset($media->rights) && is_array($media->rights)) {
193
    $metadata['rights'] = array_merge($metadata['rights'], $media->rights);
194
  }
195

    
196
  // Filling the description (though there is no description in the db???).
197
  // $metadata_caption['description'] = $media->description_L10n;
198

    
199
  // Location.
200
  $metadata['location'] = array();
201
  $metadata['location']['sublocation'] = !empty($media_metadata->Sublocation) ? $media_metadata->Sublocation : FALSE;
202
  $metadata['location']['city'] = !empty($media_metadata->City) ? $media_metadata->City : FALSE;
203
  $metadata['location']['province'] = !empty($media_metadata->Province) ? $media_metadata->Province : FALSE;
204
  $metadata['location']['country'] = !empty($media_metadata->Country) ? $media_metadata->Country : FALSE;
205

    
206
  /*
207
   // Creation date.
208
   if($media_metadata["Modify Date"])
209
   $metadata['mediacreated'] = $media_metadata["Modify Date"];
210
   else
211
   */
212
  if (!empty($media->mediaCreated)) {
213
    $metadata['mediacreated'] =  timePeriodToString($media->mediaCreated);
214
  }
215

    
216
  return $metadata;
217
}
218

    
219

    
220
/**
221
 * Return HTML for a media gallery
222
 *
223
 * @param array $configuration
224
 *   An associative array containing:
225
 *   - mediaList: An array of Media entities.
226
 *   - maxExtend
227
 *   - cols
228
 *   - maxRows
229
 *   - showCaption:  boolean value, whether to show captions or not.
230
 *   - captionElements: An array of caption elements to be shown. In case the array
231
 *        is empty of NULL  all available caption elements will be show. In order to
232
 *        supress all captions  set 'showCaption' to FALSE
233
 *        example:
234
 *          1) Show 'title', 'description', 'file', 'filename' in the caption:
235
 *            array('title', 'description', 'file', 'filename'),
236
 *          2) To add an addtional link at the bottom of  the caption:
237
 *            array('titlecache', '#uri'=>t('Open Image')) this will cause a link
238
 *            to be rendered with label 'Open image' which will open the according
239
 *            media object.
240
 *   - mediaLinkType: Valid values:
241
 *      - "NONE": do not link the images,
242
 *      - "LIGHTBOX": open the link in a light box,
243
 *      - "NORMAL": link to the image page or to the $alternativeMediaUri if
244
 *        it is defined.
245
 *   - alternativeMediaUri: A fix string or an array of alternative URIs to link the images
246
 *     which will overwrite the URIs of the media parts.
247
 *     The order of URI in this array must correspond with the order of
248
 *     images in $mediaList.
249
 *   - galleryLinkUri: An URI to link the the hint on more images to;
250
 *     if NULL no link is created.
251
 *
252
 * @return array
253
 *   A render array for the image gallery
254
 * @ingroup: compose
255
 */
256
function compose_cdm_media_gallerie($configuration) {
257

    
258
  $mediaList = $configuration['mediaList'];
259

    
260
  // Do not show an empty gallery.
261
  if (count($mediaList) == 0) {
262
    return '';
263
  }
264

    
265
  // merge with default
266
  $configuration = array_merge(
267
    array(
268
      'mediaList' => NULL,
269
      'galleryName' => NULL,
270
      'maxExtend' => 150,
271
      'cols' => 4,
272
      'maxRows' => FALSE,
273
      'captionElements' => array('title'),
274
      'mediaLinkType' => 'LIGHTBOX',
275
      'alternativeMediaUri' => NULL,
276
      'galleryLinkUri' => NULL,
277
      'showCaption' => TRUE,
278
    ),
279
    $configuration);
280

    
281
  $galleryName = $configuration['galleryName'];
282
  $maxExtend = $configuration['maxExtend'];
283
  $cols = $configuration['cols'];
284
  $maxRows = $configuration['maxRows'];
285
  $captionElements = $configuration['captionElements'];
286
  $mediaLinkType = $configuration['mediaLinkType'];
287
  $alternativeMediaUri = $configuration['alternativeMediaUri'];
288
  $galleryLinkUri = $configuration['galleryLinkUri'];
289
  $showCaption = $configuration['showCaption'];
290

    
291
  $caption_link_uri = '';
292
  if(isset($captionElements['#uri'])){
293
    $caption_link_uri = $captionElements['#uri'];
294
    unset($captionElements['#uri']);
295
  }
296
  if (!is_array($captionElements) || count($captionElements) == 0) {
297
    $captionElements = NULL;
298
  }
299

    
300
  // TODO correctly handle multiple media representation parts
301
  $_SESSION['cdm']['last_gallery'] = current_path();
302
  // Prevent from errors.
303
  if (!isset($mediaList[0])) {
304
    // return;
305
  }
306

    
307
  // --- Duplicate suppression: media can be reused but should only be shown
308
  // once.
309
  $tempMediaList = array();
310
  $tempMediaUuids = array();
311
  foreach ($mediaList as $media) {
312
    if (!in_array($media->uuid, $tempMediaUuids)) {
313
      $tempMediaList[] = $media;
314
      $tempMediaUuids[] = $media->uuid;
315
    }
316
  }
317
  $mediaList = $tempMediaList;
318

    
319
  // ---
320
  $galleryID = "media_gallery_" . $galleryName;
321

    
322
  $mediaPartLinkAttributes = array();
323
  $openMediaLinkAttributes = array();
324

    
325
  // Prepare media links.
326
  $doLink = FALSE;
327
  if ($mediaLinkType != 'NONE') {
328
    $doLink = TRUE;
329
  }
330
  if ($mediaLinkType == 'LIGHTBOX') {
331
    $doLink = TRUE;
332
    _add_js_lightbox($galleryID);
333
  }
334

    
335
  // Render the media gallery grid.
336
  $out = '<table id="' . $galleryID . '" class="media_gallery">';
337
  $out .= '<colgroup>';
338
  for ($c = 0; $c < $cols; $c++) {
339
    $out .= '<col style="width:' . (100 / $cols) . '%;">';
340
  }
341
  $out .= '</colgroup>';
342

    
343
  for ($r = 0; ($r < $maxRows || !$maxRows) && count($mediaList) > 0; $r++) {
344
    $captionParts = array();
345
    $mediaIndex = 0;
346
    $out .= '<tr>';
347
    for ($c = 0; $c < $cols; $c++) {
348
      $media = array_shift($mediaList);
349

    
350
      if (isset($media->representations[0]->parts[0])) {
351

    
352
        //
353
        // Find preferred representation.
354
        //
355
        $thumbnail_representations = cdm_preferred_media_representations($media, array(
356
            'image/jpg',
357
            'image/jpeg',
358
            'image/png',
359
            'image/gif',
360
          ),
361
          $maxExtend,
362
          $maxExtend
363
        );
364
        // due to a bug the portal/taxon/{uuid}/media service only delivers a filtered media object
365
        // which only contains the thumbnail representation even if the height and width filters are not set.
366
        // --> #6970
367
        // to get hold of the full resolution images we send a separate request :
368
        $complete_media = cdm_ws_get(CDM_WS_MEDIA, $media->uuid);
369
        $full_size_representations = cdm_preferred_media_representations($complete_media, array(
370
            'image/jpg',
371
            'image/jpeg',
372
            'image/png',
373
            'image/gif',
374
          )
375
        );
376
        if (count($thumbnail_representations) == 0) {
377
          // Fallback to using the first one in the list.
378
          $thumbnail_representations = $media->representations;
379
          $full_size_representations = $media->representations;
380
        }
381
        $thumbnail_representation = array_shift($thumbnail_representations);
382
        $full_size_representation = array_shift($full_size_representations);
383

    
384
        // $preferred_media_representation->parts[0]->uri =
385
        // "http://127.0.0.1/images/palmae/palm_tc_14415_1.jpg";
386
        $contentTypeDirectory = media_content_type_dir($thumbnail_representation, 'application');
387

    
388
        $mediaPartHtml = call_user_func_array(
389
          'cdm_media_gallerie_' . $contentTypeDirectory,
390
          array( $thumbnail_representation->parts[0], $maxExtend, TRUE)
391
        );
392
        // --- Compose Media Link.
393
        $mediaLinkUri = FALSE;
394
        if ($alternativeMediaUri) {
395
          if (isset($alternativeMediaUri[$mediaIndex])) {
396
            $mediaLinkUri = $alternativeMediaUri[$mediaIndex];
397
          }
398
          if (is_string($alternativeMediaUri)) {
399
            $mediaLinkUri = $alternativeMediaUri;
400
          }
401
        }
402
        else {
403
          $mediaLinkUri = $full_size_representation->parts[0]->uri;
404
        }
405
        $mediaIndex++;
406

    
407
        // media captions will be loaded via AHAH
408
        _add_js_ahah();
409
        $content_url = cdm_compose_url(CDM_WS_PORTAL_MEDIA, $media->uuid);
410
        $cdm_proxy_url_caption = url('cdm_api/proxy/' . urlencode($content_url) . "/cdm_media_caption/" . serialize($captionElements));
411
        $ahah_media_caption =  '<div class="ahah-content" data-cdm-ahah-url="' . $cdm_proxy_url_caption . '">'
412
          . '<span class="loading" style="display: none;">' . loading_image_html() . '</span></div>';
413

    
414
        // preparing the part link (= click on image itself) which can be handled in two ways
415
        //
416
        //  1. open image in lightbox, the captions in the lightbox will be loaded via AHAH
417
        //  2. open the media in a new window with target 'specimen'
418
        if ($mediaLinkType == 'LIGHTBOX' && $contentTypeDirectory == 'image') {
419
          $mediaPartLinkAttributes['class'] = array('lightbox');
420
        } else {
421
          $mediaPartLinkAttributes['target'] = "specimen";
422
          $openMediaLinkAttributes['target'] = "specimen";
423
        }
424
        $mediaPartLinkAttributes['alt'] = htmlentities($ahah_media_caption);
425

    
426
        // --- preparing the media caption
427

    
428
        /* old comment: "no caption elements to show up here except the $caption_link_uri, if at all"
429
         *
430
         * a.kohlbecker 2013-03-14 :
431
         *   It is unclear why no caption elements should be shown, Was it a technical reason?
432
         *   see commit r16723 740177eb-a1d8-4ec3-a630-accd905eb3da
433
         *   If not problems arise with this remove it after some weeks
434
         */
435
        $captionPartHtml = $ahah_media_caption;
436

    
437
        if ($caption_link_uri) {
438
          if ($contentTypeDirectory == 'image') {
439
            // it is an image, so open it in the media page
440
            $captionPartHtml .= '<div class="media-caption-link">' . l($caption_link_uri, path_to_media($media->uuid), array(
441
                'attributes' => array(), 'html' => TRUE,
442
              )) . '</div>';
443
          }
444
          else {
445
            // otherwise open it directly and let the the browser handle the media type
446
            $openMediaLinkAttributes['absolute'] = TRUE;
447
            $captionPartHtml .= '<div class="media-caption-link">' . l($caption_link_uri, $mediaLinkUri, array(
448
                'attributes' => $openMediaLinkAttributes, 'html' => TRUE,
449
              )) . '</div>';
450
          }
451
        }
452

    
453
        $captionParts[] = $captionPartHtml;
454

    
455
        // --- Surround imagePart with link, this .
456
        if ($doLink) {
457
          $mediaPartHtml = l($mediaPartHtml, $mediaLinkUri, array(
458
            'attributes' => $mediaPartLinkAttributes, 'html' => TRUE,
459
          ));
460
        }
461
      }
462
      else {
463
        $mediaPartHtml = '';
464
        $captionParts[] = '';
465
      }
466
      $out .= '<td class="media">' . $mediaPartHtml . '</td>';
467
    }
468
    $out .= '</tr>'; // End of media parts.
469
    if ($showCaption) {
470
      if ( (is_array($captionElements) && count($captionElements) > 0) || $caption_link_uri) {
471
        $out .= '<tr>';
472
        // Add caption row.
473
        foreach ($captionParts as $captionPartHtml) {
474
          $out .= '<td class="caption">' . $captionPartHtml . '</td>';
475
        }
476
        $out .= '</tr>';
477
      }
478
    }
479
  }
480

    
481
  if ($galleryLinkUri) {
482
    if (count($mediaList) > 0) {
483
      $moreHtml = count($mediaList) . ' ' . t('more in gallery');
484
    }
485
    else {
486
      $moreHtml = t('open gallery');
487
    }
488
    $moreHtml = l($moreHtml, $galleryLinkUri);
489
    $out .= '<tr><td colspan="' . $cols . '">' . $moreHtml . '</td></tr>';
490
  }
491
  $out .= '</table>';
492

    
493
  return $out;
494
}
495

    
496
/**
497
 * Creates markup for a CDM MediaRepresentation which is referencing an image.
498
 *
499
 * @param $mediaRepresentationPart
500
 * @param $maxExtend
501
 * @param $addPassePartout
502
 * @param $attributes
503
 * @return string
504
 *   The markup for the media representation
505
 */
506
function cdm_media_gallerie_image($mediaRepresentationPart, $maxExtend, $addPassePartout, $attributes = array()) {
507

    
508
  $out = '';
509

    
510
  // TODO merge with theme_cdm_media_mime_image?
511
  if (isset($mediaRepresentationPart)) {
512

    
513
    $h = $mediaRepresentationPart->height;
514
    $w = $mediaRepresentationPart->width;
515
    if ($w == 0 || $h == 0) {
516
      // Take url and replace spaces.
517
      $image_uri = str_replace(' ', '%20', $mediaRepresentationPart->uri);
518
      $imageDimensions = getimagesize_remote($image_uri);
519
      if (!$imageDimensions) {
520
        return '<div>' . t('Image unavailable, uri: ') . $mediaRepresentationPart->uri . '</div>';
521
      }
522
      $w = $imageDimensions[0];
523
      $h = $imageDimensions[1];
524
    }
525

    
526
    $ratio = $w / $h;
527
    if ($ratio > 1) {
528
      $displayHeight = round($maxExtend / $ratio);
529
      $displayWidth = $maxExtend;
530
      $m = round(($maxExtend - $displayHeight) / 2);
531
      $margins = 'margin:' . $m . 'px 0 ' . $m . 'px 0;';
532
    }
533
    else {
534
      $displayHeight = $maxExtend;
535
      $displayWidth = round($maxExtend * $ratio);
536
      $m = round(($maxExtend - $displayWidth) / 2);
537
      $margins = 'margin:0 ' . $m . 'px 0 ' . $m . 'px;';
538
    }
539

    
540
    // Turn attributes array into string.
541
    if(!is_array($attributes)){
542
      $attributes = array();
543
    }
544
    if(!isset($attributes['alt'])){
545
      $attributes['alt'] = check_plain($mediaRepresentationPart->uri);
546
    }
547
    $attrStr = ' ';
548
    // $attributes['title'] = 'h:'.$h.', w:'.$w.',ratio:'.$ratio;
549
    if (is_array($attributes)) {
550
      foreach ($attributes as $name => $value) {
551
        $attrStr .= $name . '="' . $value . '" ';
552
      }
553
    }
554

    
555
    if ($addPassePartout) {
556
      $out .= '<div class="image-passe-partout" style="width:' . $maxExtend . 'px; height:' . $maxExtend . 'px;">';
557
    }
558
    else {
559
      // Do not add margins if no pass partout is shown.
560
      $margins = '';
561
    }
562
    $out .= '<img src="' . $mediaRepresentationPart->uri . '" width="' . $displayWidth . '" height="' . $displayHeight . '" style="' . $margins . '"' . $attrStr . ' />';
563

    
564
    if ($addPassePartout) {
565
      $out .= '</div>';
566
    }
567
  }
568

    
569
  return $out;
570
}
571

    
572
/**
573
 * Creates markup for a CDM MediaRepresentation which is referencing an web application.
574
 *
575
 * @param $mediaRepresentationPart
576
 * @param $maxExtend
577
 * @param $addPassePartout
578
 * @param $attributes
579
 * @return string
580
 *   The markup for the media representation
581
 */
582
function cdm_media_gallerie_application($mediaRepresentationPart, $maxExtend, $addPassePartout, $attributes = array()) {
583

    
584
  $out = '';
585

    
586
  if (isset($mediaRepresentationPart)) {
587

    
588
    if ($addPassePartout) {
589
      $out .= '<div class="image-passe-partout" style="width:' . $maxExtend . 'px; height:' . $maxExtend . 'px;">';
590
    }
591
    $out .= '<div class="application">Web Application</div>';
592

    
593
    if ($addPassePartout) {
594
      $out .= '</div>';
595
    }
596
  }
597

    
598
  return $out;
599
}
600

    
601
/**
602
 * Creates markup for a CDM MediaRepresentation which is referencing an web application.
603
 *
604
 * @param $mediaRepresentationPart
605
 * @param $maxExtend
606
 * @param $addPassePartout
607
 * @param $attributes
608
 * @return string
609
 *   The markup for the media representation
610
 */
611
function cdm_media_gallerie_text($mediaRepresentationPart, $maxExtend, $addPassePartout, $attributes = array()) {
612

    
613
  $out = '';
614

    
615
  if (isset($mediaRepresentationPart)) {
616
    if ($addPassePartout) {
617
      $out .= '<div class="image-passe-partout" style="width:' . $maxExtend . 'px; height:' . $maxExtend . 'px;">';
618
    }
619

    
620
    $out .= '<div class="application">Web Application</div>';
621

    
622
    if ($addPassePartout) {
623
      $out .= '</div>';
624
    }
625
  }
626

    
627
  return $out;
628
}
629

    
630
/**
631
 * Adds the OpenLayers based image viewer to the page.
632
 *
633
 * The OpenLayers based image viewer allows to zoom and pan the displayed image.
634
 *
635
 * Documentation related to using Openlayers in order to view images is found here:
636
 *  - @see http://trac.openlayers.org/wiki/UsingCustomTiles#UsingTilesWithoutaProjection
637
 *  - @see http://trac.openlayers.org/wiki/SettingZoomLevels
638
 *
639
 * @param array $variables
640
 *   An associative array of theme variables:
641
 *   - mediaRepresentationPart: The CDM MediaRepresentationPart instance to be displayed.
642
 *   - maxExtend: The maximum extend of the image viewer view port.
643
 */
644
function cdm_openlayers_image($mediaRepresentationPart, $maxExtend) {
645

    
646
  _add_js_openlayers();
647

    
648
  // TODO merge code below with code from theme_cdm_media_gallerie_image
649
  // var_dump("MEDIA URI: " . $mediaRepresentationPart->uri);
650
  // TODO merge code below with code from theme_cdm_media_gallerie_image
651
  $w = $mediaRepresentationPart->width;
652
  $h = $mediaRepresentationPart->height;
653

    
654
  if ($w == 0 || $h == 0) {
655
    // Take url and replace spaces.
656
    $image_uri = str_replace(' ', '%20', $mediaRepresentationPart->uri);
657
    $imageDimensions = getimagesize_remote($image_uri);
658
    if (!$imageDimensions) {
659
      return '<div>' . t('Image unavailable, uri:') . $mediaRepresentationPart->uri . '</div>';
660
    }
661
    $w = $imageDimensions[0];
662
    $h = $imageDimensions[1];
663
  }
664

    
665
  // Calculate maxResolution
666
  if ($w > $h) {
667
    $maxRes = $w / $maxExtend;
668
  }
669
  else {
670
    $maxRes = $h / $maxExtend;
671
  }
672

    
673
  $maxRes *= 1;
674

    
675
  drupal_add_js('
676
 var map;
677

    
678
 var imageLayerOptions={
679
     maxResolution: ' . $maxRes . ',
680
     maxExtent: new OpenLayers.Bounds(0, 0, ' . $w . ', ' . $h . ')
681
  };
682
  var mapOptions={
683
      controls:
684
       [
685
         new OpenLayers.Control.PanZoom(),
686
         new OpenLayers.Control.Navigation({zoomWheelEnabled: false, handleRightClicks:true, zoomBoxKeyMask: OpenLayers.Handler.MOD_CTRL})
687
       ],
688
     restrictedExtent:  new OpenLayers.Bounds(0, 0, ' . $w . ', ' . $h . ')
689
  };
690

    
691
 var graphic = new OpenLayers.Layer.Image(
692
          \'Image Title\',
693
          \'' . $mediaRepresentationPart->uri . '\',
694
          new OpenLayers.Bounds(0, 0, ' . $w . ', ' . $h . '),
695
          new OpenLayers.Size(' . $w . ', ' . $h . '),
696
          imageLayerOptions
697
          );
698

    
699
 function init() {
700
   map = new OpenLayers.Map(\'openlayers_image\', mapOptions);
701
   map.addLayers([graphic]);
702
   map.setCenter(new OpenLayers.LonLat(0, 0), 1);
703
   map.zoomToMaxExtent();
704
 }
705

    
706
jQuery(document).ready(function(){
707
  init();
708
});', array('type' => 'inline'));
709
  $out = '<div id="openlayers_image" class="image_viewer" style="width: ' . $maxExtend . 'px; height:' . ($maxExtend) . 'px"></div>';
710
  return $out;
711
}
(4-4/10)