lightbox2.formatter.inc
22.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
<?php
// $Id: lightbox2.formatter.inc,v 1.1.2.30 2010/09/22 10:47:15 snpower Exp $
/**
* @file
* Lightbox2 formatter hooks and callbacks.
*/
/**
* Theme function for displaying the lightbox2 trigger image in an imagefield.
*
* @param $path
* The path to the image to be displayed.
* @param $alt
* The image alternative text.
* @param $title
* The image title.
* @param $attributes
* An array of image attributes, e.g. class name.
* @return
* HTML output for displaying the image.
*/
function theme_lightbox2_image($variables) {
$path = $variables['path'];
$item = $variables['item'];
$image_style = $variables['image_style'];
$node_id = $variables['node_id'];
$field_name = $variables['field_name'];
if (!$variables["lightbox_style"]) {
$path['path'] = file_create_url($item['uri']);
}
else {
$path['path'] = image_style_url($variables["lightbox_style"], $item['uri']);
}
// Lightbox type
$rel = $variables['lightbox_type'];
// Grouping
$rel .= '[';
$group = variable_get('lightbox2_image_group_node_id', 1);
switch ($group) {
// No groups
case '0':
break;
// Group by field name
case '1':
$rel .= $field_name;
break;
// Group by node id
case '2':
$rel .= $node_id;
break;
// Group by field name and node id
case '3':
$rel .= $field_name . '_' . $node_id;
break;
// All nodes and fields in same group
case '4':
$rel .= 'group';
break;
}
$rel .= ']';
// Title Start
$rel .= '[' . $item['title'];
// Download Link
if (user_access('download original image')) {
$rel .= '<p><a href="' . file_create_url($item['uri']) . '">' . variable_get('lightbox2_download_link_text', 'Download Original') . '</a></p>';
}
// Title End
$rel .= ']';
$path['options']['attributes']['rel'] = $rel;
$path['options']['attributes']['title'] = $item['title'];
return theme('image_formatter', array( 'item' => $item, 'path' => $path, 'image_style' => $image_style ) );
}
/**
* Handler for Lightbox2 display of imagecache + imagefield CCK fields.
*
* The compact view shows only the first image in a multiple imagefield but
* shows all images in the lightbox.
*
* @param $element
* The CCK field element.
* @return
* HTML output for displaying the image and link.
*/
/*function theme_lightbox2_formatter_imagefield($variables) {
$element = $variables['element'];
if (!module_exists("image")) {
return;
}
$field_name = $element['#field_name'];
$item = $element['#item'];
$formatter = $element['#formatter'];
$node = node_load($element['#item']['nid']);
if (strpos($formatter, '__lightbox2__') !== FALSE || strpos($formatter, '__lightshow2__') !== FALSE || strpos($formatter, '__lightframe2__') !== FALSE
|| strpos($formatter, '__lightbox2_compact__') !== FALSE || strpos($formatter, '__lightshow2_compact__') !== FALSE || strpos($formatter, '__lightframe2_compact__') !== FALSE) {
list($tmp, $lightbox_type, $view_preset, $lightbox_preset) = explode('__', $formatter, 4);
return lightbox2_imagefield_image_imagecache($field_name, $item, $formatter, $node, $view_preset, $lightbox_preset);
}
}*/
/**
* Function to set up the data needed for
* theme_imagefield_image_imagecache_lightbox2().
*
* @param $field_name
* The field name the action is being performed on.
* @param $item
* An array, keyed by column, of the data stored for this item in this field.
* @param $formatter
* The formatter to use for the field.
* @param $node
* The node object.
* @param $view_preset
* The imagecache preset to be displayed on the node or in the view.
* @param $lightbox_preset
* The imagecache preset to be displayed in the lightbox.
* @return
* The themed imagefield + imagecache image and link.
*/
/*function lightbox2_imagefield_image_imagecache($variables) {
$field_name = $variables['field_name'];
$item = $variables['item'];
$formatter = $variables['formatter'];
$node = $variables['node'];
$view_preset = $variables['view_preset'];
$lightbox_preset = $variables['lightbox_preset'];
// Load file data if missing
if (!isset($item['filepath']) && !empty($item['fid'])) {
$file = field_file_load($item['fid']);
$item = array_merge($item, (array)$file);
}
elseif (!isset($item['filepath'])) {
// No file in field, return.
return '';
}
$args['lightbox_preset'] = $lightbox_preset;
// Check view_preset for existence.
$rules = array();
if (function_exists('imagecache_presets')) {
$presets = imagecache_presets();
foreach ($presets as $preset_id => $preset_info) {
$rules[$preset_id] = $preset_info['presetname'];
}
}
else {
$rules = _imagecache_get_presets();
}
if ($view_preset == 'link' || $view_preset == 'original' || in_array($view_preset, (array) $rules)) {
$rel = 'lightbox';
if (strpos($formatter, '__lightshow2__') !== FALSE) {
$rel = 'lightshow';
}
elseif (strpos($formatter, '__lightshow2_compact__') !== FALSE) {
$rel = 'lightshow';
$args['compact'] = TRUE;
}
elseif (strpos($formatter, '__lightframe2__') !== FALSE) {
$rel = 'lightframe';
}
// Check if this is a compact display.
list($tmp, $lightbox_type, $tmp) = explode('__', $formatter, 3);
if ($lightbox_type == 'lightbox2_compact') {
$args['compact'] = TRUE;
}
return theme('imagefield_image_imagecache_lightbox2', array( 'view_preset' => $view_preset, 'field_name' => $field_name, 'item' => $item, 'node' => $node, 'rel' => $rel, 'args' => $args ) );
}
}
/**
* Generate the HTML output for imagefield + imagecache images so they can be
* opened in a lightbox by clicking on the image on the node page or in a view.
*
* This actually also handles filefields + imagecache images too.
*
* @param $view_preset
* The imagecache preset to be displayed on the node or in the view.
* @param $field_name
* The field name the action is being performed on.
* @param $item
* An array, keyed by column, of the data stored for this item in this field.
* @param $node
* The node object.
* @param $rel
* The type of lightbox to open: lightbox, lightshow or lightframe.
* @param $args
* Args may override internal processes: caption, rel_grouping.
* @return
* The themed imagefield + imagecache image and link.
*/
/*function theme_imagefield_image_imagecache_lightbox2($variables) {
$view_preset = $variables['view_preset'];
$field_name = $variables['field_name'];
$item = $variables['item'];
$node = $variables['node'];
$rel = $variables['rel'];
$args = $variables['args'];
if (!isset($args['lightbox_preset'])) {
$args['lightbox_preset'] = 'original';
}
// Can't show current node page in a lightframe on the node page.
// Switch instead to show it in a lightbox.
$on_image_node = (arg(0) == 'node') && (arg(1) == $node->nid);
if ($rel == 'lightframe' && $on_image_node) {
$rel = 'lightbox';
}
$orig_rel = $rel;
// Unserialize into original - if sourced by views.
$item_data = $item['data'];
if (is_string($item['data'])) {
$item_data = unserialize($item['data']);
}
// Set up the title.
$image_title = $item_data['description'];
$image_title = (!empty($image_title) ? $image_title : $item_data['title']);
$image_title = (!empty($image_title) ? $image_title : $item_data['alt']);
if (empty($image_title) || variable_get('lightbox2_imagefield_use_node_title', FALSE)) {
$node = node_load($node->nid);
$image_title = $node->title;
}
$image_tag_title = '';
if (!empty($item_data['title'])) {
$image_tag_title = $item_data['title'];
}
// Enforce image alt.
$image_tag_alt = '';
if (!empty($item_data['alt'])) {
$image_tag_alt = $item_data['alt'];
}
elseif (!empty($image_title)) {
$image_tag_alt = $image_title;
}
// Set up the caption.
$node_links = array();
if (!empty($item['nid'])) {
$attributes = array();
$attributes['id'] = 'lightbox2-node-link-text';
$target = variable_get('lightbox2_node_link_target', FALSE);
if (!empty($target)) {
$attributes['target'] = $target;
}
$node_link_text = variable_get('lightbox2_node_link_text', 'View Image Details');
if (!$on_image_node && !empty($node_link_text)) {
$node_links[] = l($node_link_text, 'node/'. $item['nid'], array('attributes' => $attributes));
}
$download_link_text = check_plain(variable_get('lightbox2_download_link_text', 'Download Original'));
if (!empty($download_link_text) && user_access('download original image')) {
$node_links[] = l($download_link_text, file_create_url($item['filepath']), array('attributes' => array('target' => '_blank', 'id' => 'lightbox2-download-link-text')));
}
}
$caption = $image_title;
if (count($node_links)) {
$caption .= '<br /><br />'. implode(" - ", $node_links);
}
if (isset($args['caption'])) {
$caption = $args['caption']; // Override caption.
}
if ($orig_rel == 'lightframe') {
$frame_width = variable_get('lightbox2_default_frame_width', 600);
$frame_height = variable_get('lightbox2_default_frame_height', 400);
$frame_size = 'width:'. $frame_width .'px; height:'. $frame_height .'px;';
$rel = preg_replace('/\]$/', "|$frame_size]", $rel);
}
// Set up the rel attribute.
$full_rel = '';
$imagefield_grouping = variable_get('lightbox2_imagefield_group_node_id', 1);
if (isset($args['rel_grouping'])) {
$full_rel = $rel .'['. $args['rel_grouping'] .']['. $caption .']';
}
elseif ($imagefield_grouping == 1) {
$full_rel = $rel .'['. $field_name .']['. $caption .']';
}
elseif ($imagefield_grouping == 2 && !empty($item['nid'])) {
$full_rel = $rel .'['. $item['nid'] .']['. $caption .']';
}
elseif ($imagefield_grouping == 3 && !empty($item['nid'])) {
$full_rel = $rel .'['. $field_name .'_'. $item['nid'] .']['. $caption .']';
}
elseif ($imagefield_grouping == 4 ) {
$full_rel = $rel .'[allnodes]['. $caption .']';
}
else {
$full_rel = $rel .'[]['. $caption .']';
}
$class = '';
if ($view_preset != 'original') {
$class = 'imagecache imagecache-' . $field_name . ' imagecache-' . $view_preset . ' imagecache-' . $field_name . '-' . $view_preset;
}
$link_attributes = array(
'rel' => $full_rel,
'class' => 'imagefield imagefield-lightbox2 imagefield-lightbox2-' . $view_preset . ' imagefield-' . $field_name . ' ' . $class,
);
$attributes = array();
if (isset($args['compact']) && $item['#delta']) {
$image = '';
}
elseif ($view_preset == 'original') {
$image = theme('lightbox2_image', array( 'path' => $item['filepath'], 'alt' => $image_tag_alt, 'title' => $image_tag_title, 'attributes' => $attributes ) );
}
elseif ($view_preset == 'link') {
// Not actually an image, just a text link.
$image = variable_get('lightbox2_view_image_text', 'View image');
}
else {
$image = theme('imagecache', array( 'style_name' => $view_preset, 'path' => $item['filepath'], 'alt' => $image_tag_alt, 'title' => $image_tag_title, 'attributes' => $attributes ) );
}
if ($args['lightbox_preset'] == 'node') {
$output = l($image, 'node/'. $node->nid .'/lightbox2', array('attributes' => $link_attributes, 'html' => TRUE));
}
elseif ($args['lightbox_preset'] == 'original') {
$output = l($image, file_create_url($item['filepath']), array('attributes' => $link_attributes, 'html' => TRUE));
}
else {
$output = l($image, imagecache_create_url($args['lightbox_preset'], $item['filepath']), array('attributes' => $link_attributes, 'html' => TRUE));
}
return $output;
}*/
/**
* Theme function for the lightbox iframe filefield formatter.
*
* @param $element
* The CCK field element.
* @return
* The themed link to the file, with lightframe support.
*/
/*function theme_lightbox2_formatter_filefield_lightframe($variables) {
$element = $variables['element'];
$file = $element['#item'];
$field = content_fields($element['#field_name']);
if (!filefield_view_access($field['field_name']) || empty($file['list'])) {
return '';
}
if (empty($file['fid']) || !is_file($file['filepath'])) {
return '';
}
$file = (object)$file;
if (!lightbox2_check_filefield_extension($file, $field)) {
return '';
}
drupal_add_css(drupal_get_path('module', 'filefield') .'/filefield.css');
return '<div class="filefield-item">'. theme('lightbox2_file_formatter_lightbox2_iframe', array( 'file' => $file, 'field' => $field, 'file_formatter_settings' => NULL ) ) .'</div>';
}*/
/**
* Theme function for the lightbox iframe filefield formatter.
*
* @param $file
* Filefield file object.
* @param $field
* The CCK field the action is being performed on.
* @param $file_formatter_settings
* File formatter settings; ignored.
* @return
* Themed link to filefield.
*/
/*function theme_lightbox2_file_formatter_lightbox2_iframe($variables) {
$file = $variables['file'];
$field = $varbiables['field'];
$file_formatter_settings = $variables['file_formatter_settings'];
$path = $file->filepath;
$url = file_create_url($path);
$icon = theme('file_icon', array( 'file' => $file ) );
$file_data = $file->data;
if (is_string($file_data)) {
$file_data = unserialize($file->data);
}
$description = $file_data['description'];
if (empty($description)) {
$description = $file->filename;
}
$attributes = array();
$attributes['id'] = 'lightbox2-node-link-text';
$target = variable_get('lightbox2_node_link_target', FALSE);
if (!empty($target)) {
$attributes['target'] = $target;
}
$node_link = '';
$node_link_text = check_plain(variable_get('lightbox2_node_link_text', 'View Image Details'));
if (!empty($node_link_text)) {
$node_link .= '<br /><br />'. l($node_link_text, $url, array('attributes' => $attributes));
}
// Only files with supported extensions make it this far, so no need to check here.
$link_attributes = array('rel' => 'lightframe[]['. $description . $node_link .']');
return '<div class="filefield-formatter-lightbox2-iframe">'. $icon . l($description, $url, array('attributes' => $link_attributes)) .'</div>';
}*/
/**
* Generate the HTML output to open embedded cck images in a lightbox.
*
* @param $element
* The CCK field element.
* @return
* The themed link to the embedded image.
*/
/*function theme_lightbox2_formatter_emimage($variables) {
$element = $variables['element'];
$field = content_fields($element['#field_name'], $element['#type_name']);
$item = $element['#item'];
$formatter = $element['#formatter'];
$node = node_load($element['#node']->nid);
list($tmp, $lightbox_type) = explode('_', $formatter, 2);
$field['lightbox_type'] = $lightbox_type;
$formatter = "emimage";
return module_invoke('emfield', 'emfield_field_formatter', $field, $item, $formatter, $node, 'lightbox2');
}*/
/**
* Generate the HTML output to open embedded cck images in a lightbox.
*
* @param $field
* The CCK field the action is being performed on.
* @param $item
* An array, keyed by column, of the data stored for this item in this field.
* @param $formatter
* The formatter to use for the field.
* @param $node
* The node object.
* @param $args
* Args may override internal processes: caption, rel_grouping.
* @return
* Themed embedded media field image and link.
*/
/*function theme_lightbox2_emimage($variables) {
$field = $variables['field'];
$item = $variables['item'];
$formatter = $variables['formatter'];
$node = $variables['node'];
$args = $variables['args'];
$lightbox_type = $field['lightbox_type'];
if ($item['value'] && $item['provider']) {
$rel = 'lightbox';
if ($lightbox_type == 'lightshow2') {
$rel = 'lightshow';
}
elseif ($lightbox_type == 'lightframe2') {
$rel = 'lightframe';
}
if ($rel == 'lightframe' && arg(0) == 'node' && arg(1) == $node->nid) {
$rel = 'lightbox';
}
$orig_rel = $rel;
$code = $item['value'];
$width = $field['widget']['thumbnail_width'] == '' ? variable_get('emimage_default_full_width', EMIMAGE_DEFAULT_FULL_WIDTH) : $field['widget']['thumbnail_width'];
$height = $field['widget']['thumbnail_height'] == '' ? variable_get('emimage_default_full_height', EMIMAGE_DEFAULT_FULL_HEIGHT) : $field['widget']['thumbnail_height'];
$link = $field['widget']['thumbnail_link'] ? $field['widget']['thumbnail_link'] : variable_get('emimage_default_thumbnail_link', EMIMAGE_DEFAULT_THUMBNAIL_LINK);
if ($link == EMIMAGE_LINK_CONTENT) {
$link = 'node/'. $node->nid;
}
elseif ($link == EMIMAGE_LINK_PROVIDER) {
$link = module_invoke('emfield', 'include_invoke', 'emimage', $item['provider'], 'embedded_link', $code, $item['data']);
}
else {
$link = NULL;
}
$attributes = array();
$attributes['id'] = 'lightbox2-node-link-text';
if ($width) {
$attributes['width'] = $width;
}
if ($height) {
$attributes['height'] = $height;
}
$target = variable_get('lightbox2_node_link_target', FALSE);
if (!empty($target)) {
$attributes['target'] = $target;
}
// Set up the title.
$title = module_invoke('emfield', 'include_invoke', 'emimage', $item['provider'], 'image_title', $code, $item['data']);
// Set up the caption.
$node_link = '';
$node_link_text = variable_get('lightbox2_node_link_text', 'View Image Details');
if (!empty($node_link_text) && !empty($link)) {
$node_link = '<br /><br />'. l($node_link_text, $link, array('attributes' => $attributes));
}
// @TODO original download link possible with emfield?
$caption = $title . $node_link;
if (isset($args['caption'])) {
$caption = $args['caption']; // Override caption.
}
// Set up url and image.
$url = module_invoke('emfield', 'include_invoke', 'emimage', $item['provider'], 'image_url', $code, $width, $height, "emimage", $field, $item, $node);
$image = theme('image', array( 'path' => $url, 'alt' => $title, 'title' => $title, 'attributes' => $attributes, 'getsize' => FALSE ) );
// Set up full rel attribute.
$image_grouping = variable_get('lightbox2_emimage_group_node_id', 1);
if ($image_grouping == 1) {
$full_rel = $rel .'['. $field['field_name'] .']['. $caption .']';
}
elseif ($image_grouping == 2 && !empty($node->nid)) {
$full_rel = $rel .'['. $node->nid .']['. $caption .']';
}
elseif ($image_grouping == 3 && !empty($node->nid)) {
$full_rel = $rel .'['. $field['field_name'] .'_'. $node->nid .']['. $caption .']';
}
elseif (isset($args['rel_grouping'])) {
$full_rel = $rel .'['. $args['rel_grouping'] .']['. $caption .']';
}
else {
$rel = $full_rel .'[]['. $caption .']';
}
if ($orig_rel != 'lightframe') {
$link_attributes = array('rel' => $full_rel);
$full_width = $field['widget']['full_width'] == '' ? variable_get('emimage_default_full_width', EMIMAGE_DEFAULT_FULL_WIDTH) : $field['widget']['full_width'];
$full_height = $field['widget']['full_height'] == '' ? variable_get('emimage_default_full_height', EMIMAGE_DEFAULT_FULL_HEIGHT) : $field['widget']['full_height'];
$full_image_url = module_invoke('emfield', 'include_invoke', 'emimage', $item['provider'], 'image_url', $code, $full_width, $full_height, "emimage", $field, $item, $node);
$output = l($image, $full_image_url, array('attributes' => $link_attributes, 'html' => TRUE));
}
else {
$frame_width = variable_get('lightbox2_default_frame_width', 600);
$frame_height = variable_get('lightbox2_default_frame_height', 400);
$frame_size = 'width:'. $frame_width .'px; height:'. $frame_height .'px;';
$full_rel = preg_replace('/\]\[/', "|$frame_size][", $full_rel);
$link_attributes = array('rel' => $full_rel);
$output = l($image, $link .'/lightbox2', array('attributes' => $link_attributes, 'html' => TRUE));
}
}
return $output;
}*/
/**
* Generate the HTML output to open embedded cck videos in a lightbox.
*
* @param $element
* The CCK field element.
* @return
* HTML output for displaying the video and link.
*/
/*function theme_lightbox2_formatter_emvideo_lightvideo($variables) {
$element = $variables['element'];
if (!variable_get('lightbox2_enable_video', FALSE)) {
return;
}
$field = content_fields($element['#field_name'], $element['#type_name']);
$item = $element['#item'];
$formatter = "emvideo";
$node = node_load($element['#node']->nid);
return module_invoke('emfield', 'emfield_field_formatter', $field, $item, $formatter, $node, 'lightbox2');
}*/
/**
* Generate the HTML output to open embedded cck videos in a lightbox.
*
* @param $field
* The CCK field the action is being performed on.
* @param $item
* An array, keyed by column, of the data stored for this item in this field.
* @param $formatter
* The formatter to use for the field.
* @param $node
* The node object.
* @param $options
* Options array.
* @return
* Themed link to the embedded media field video.
*/
/*function theme_lightbox2_emvideo($variables) {
$field = $variables['field'];
$item = $variables['item'];
$formatter = $variables['formatter'];
$node = $variables['node'];
$thumbnail = isset($options['thumbnail']) ? $options['thumbnail'] : theme('emvideo_video_thumbnail', $field, $item, 'video_thumbnail', $node, TRUE, $options);
// if options title set use that, otherwise use video title if set in node,
// otherwise try node title, then widget thumbnail setting and fallback to
// default string.
$title = isset($options['title']) ? $options['title'] : (isset($item['data']['emthumb']['emthumb_title']) ? $item['data']['emthumb']['emthumb_title'] : (isset($node->title) ? $node->title : (isset($field['widget']['thumbnail_link_title']) ? $field['widget']['thumbnail_link_title'] : variable_get('emvideo_default_thumbnail_link_title', t('See video')))));
$destination = 'video-cck/lightbox2/'. $node->nid .'/'. $field['widget']['video_width'] .'/'. $field['widget']['video_height'] .'/'. $field['field_name'] .'/'. $item['provider'] .'/'. $item['value'];
$width = $field['widget']['video_width'] + 20;
$height = $field['widget']['video_height'] + 20;
if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE)) {
$width = $field['widget']['video_width'] + 40;
$height = $field['widget']['video_height'] + 40;
}
$rel_full = 'lightframe['. $field['type_name'] . '|width:'. $width .'px; height:'. $height .'px; overflow:visible;]';
$attributes = array(
'attributes' => array(
'title' => $title,
'class' => $field['type_name'],
'rel' => $rel_full,
),
'query' => NULL,
'fragment' => NULL,
'absolute' => FALSE,
'html' => TRUE,
);
$output = l($thumbnail, $destination, $attributes);
return $output;
}*/