lightbox2.module
73.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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
<?php
/**
* @file
* Enables the use of lightbox2 which places images above your current page,
* not within. This frees you from the constraints of the layout,
* particularly column widths.
*
* This module is for Drupal 6.x only.
*
* Module by: Mark Ashmead
* Mailto: bugzie@gmail.com
* Co-maintainer: Stella Power (http://drupal.org/user/66894)
*
* Image Node Support: Steve McKenzie
*/
/**
* Implementation of hook_help().
*/
function lightbox2_help($path, $arg) {
switch ($path) {
case 'admin/modules#description':
$output = t('Enables Lightbox2 for Drupal');
break;
case 'admin/help#lightbox2':
$output = '<h3>' . t('Overview') . '</h3>';
$output .= '<p>' . t('Lightbox2 JS is a simple, unobtrusive script used to overlay images on the current page. It\'s a snap to setup and works on all modern browsers. The module comes with a Lightbox2 Lite option which does not use the JQuery libraries; it is therefore less likely to conflict with anything else.') . '</p>';
$output .= '<p>' . t('Places images above your current page, not within. This frees you from the constraints of the layout, particularly column widths. Keeps users on the same page. Clicking to view an image and then having to click the back button to return to your site is bad for continuity (and no fun!).') . '</p>';
// Features
$output .= '<h3>' . t('Features') . '</h3>';
$output .= '<p>' . t('The version 2 module has several benefits over the plain Lightbox module. Note, not all of these features are available when the "Lightbox2 Lite" option is enabled.') . '</p>';
$output .= '<ul>';
$output .= '<li>' . t('Image Sets: group related images and navigate through them with ease - ideal for your image galleries.') . '</li>';
$output .= '<li>' . t('Slideshow Capability: automatically transition between grouped images, includes play/pause and previous and next buttons.') . '</li>';
$output .= '<li>' . t('HTML Content Support: ability to show websites or other HTML content in a lightbox.') . '</li>';
$output .= '<li>' . t('Video Content Support: ability to show videos in a lightbox.') . '</li>';
$output .= '<li>' . t('Visual Effects: fancy pre-loader and transition when you click on the image.') . '</li>';
$output .= '<li>' . t('Keyboard Shortcuts: useful <a href="http://drupal.org/node/249827">keyboard shortcuts</a> for switching between images, toggling play / pause, etc.') . '</li>';
$output .= '<li>' . t('Zoom Capability: larger images are reduced in size so they fit snugly inside the browser window. A zoom button can then be clicked on to see it in its original size.') . '</li>';
$output .= '<li>' . t('Automatic Image Detection: configurable automatic re-formatting of image thumbnails, so there is no need to add \'rel="lightbox"\' to each image link on your site. ');
$output .= t('<a href="!image">Image</a>, <a href="!inline">Inline</a>, <a href="!flickr">Flickr</a>, <a href="!img_assist">Image Assist</a> and <a href="!imagefield">CCK Imagefield</a> modules are all supported. ', array('!image' => 'http://drupal.org/project/image', '!inline' => 'http://drupal.org/project/inline', '!flickr' => 'http://drupal.org/project/flickr', '!img_assist' => 'http://drupal.org/project/img_assist', '!imagefield' => 'http://drupal.org/project/imagefield'));
$output .= t('It\'s also possible to configure a custom list of image classes which should trigger the lightbox functionality.');
$output .='</li>';
$output .= '<li>' . t('<a href="!imagecache">Imagecache</a> Support: adds a Lightbox2 field formatter for <a href="!imagefield">CCK imagefields</a> for your custom <a href="!views">views</a>.', array('!imagecache' => 'http://drupal.org/project/imagecache', '!imagefield' => 'http://drupal.org/project/imagefield', '!views' => 'http://drupal.org/project/views')) . '</li>';
$output .= '<li>' . t('Image Page Link: a link to the image node can be provided within the lightbox itself.') . '</li>';
$output .= '<li>' . t('Page Exclusion Capability: exclude certain pages on your site from having the lightbox2 functionality.') . '</li>';
$output .= '<li>' . t('Login Support: ability to modify all user/login links so the login form appears in a lightbox.') . '</li>';
$output .= '<li>' . t('Skin and Animation Configuration: configure the order and speed of the lightbox animations, along with the lightbox colors, border size and overlay opacity.') . '</li>';
$output .= '<li>' . t('Gallery 2 Support: support for Gallery 2 images via the <a href="!gallery">Gallery</a> module (beta).', array('!gallery' => 'http://drupal.org/project/gallery')) . '</li>';
$output .= '</ul>';
// Usage
$output .= '<h3>' . t('Usage') . '</h3>';
$output .= '<h5 style="text-decoration: underline;">' . t('Adding a Basic Lightbox') . '</h5>';
$output .= '<p>' . t('Add rel="lightbox" attribute to any link tag to activate the lightbox. For example:') . '</p>';
$output .= '<code>' . t('<a href="image-1.jpg" rel="lightbox">image #1</a><br />
<a href="image-1.jpg" rel="lightbox[][my caption]">image #1</a>') . '</code>';
$output .= '<p>' . t('Optional: To show a caption either use the title attribute or put in the second set of [] of the rel attribute.') . '</p>';
// Grouping Images
$output .= '<h5 style="text-decoration: underline;">' . t('Grouping Images') . '</h5>';
$output .= '<p>' . t('If you have a set of related images that you would like to group, follow step one but additionally include a group name between square brackets in the rel attribute. For example:') . '</p>';
$output .= '<code>' . t('<a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a><br />
<a href="images/image-2.jpg" rel="lightbox[roadtrip][caption 2]">image#2</a><br />
<a href="images/image-3.jpg" rel="lightbox[roadtrip][caption 3]">image#3</a>') . '</code>';
$output .= '<p>' . t('No limits to the number of image sets per page or how many images are allowed in each set.') . '</p>';
$output .= '<p>' . t('If you have a set of images that you would like to group together in a lightbox, but only wish for one of these images to be visible on your page, you can assign the "lightbox_hide_image" class to hide the additional images. For example:') . '</p>';
$output .= '<p><code>' . t('<a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a><br />
<a href="images/image-2.jpg" rel="lightbox[roadtrip]" class="lightbox_hide_image">image #2</a><br />
<a href="images/image-3.jpg" rel="lightbox[roadtrip][caption 3]" class="lightbox_hide_image">image #3</a>') . '</code></p>';
// Slideshow
$output .= '<h5 style="text-decoration: underline;">' . t('Slideshow') . '</h5>';
$output .= '<p>' . t('This is very similar to the grouping functionality described above. The only difference is that "rel" attribute should be set to "lightshow" instead of "lightbox". Using the same example as above, we could launch the images in a slideshow by doing:') . '</p>';
$output .= '<p><code>' . t('<a href="images/image-1.jpg" rel="lightshow[roadtrip]">image #1</a><br />
<a href="images/image-2.jpg" rel="lightshow[roadtrip][caption 2]">image #2</a><br />
<a href="images/image-3.jpg" rel="lightshow[roadtrip][caption 3]">image #3</a>') . '</code></p>';
// Video Content
$output .= '<h5 style="text-decoration: underline;">' . t('Video Content') . '</h5>';
$output .= '<p>' . t('It\'s possible to show video content in the lightbox. In this case the "rel" attribute should be set to <code>lightvideo</code>. It\'s possible to group videos and to control the size of the lightbox by setting the \'width\' and \'height\' properties. The properties can be configured like <code>lightvideo[group|width:300px; height: 200px;]</code> and <code>lightvideo[|width:300px; height: 200px;][my caption]</code>. The properties should all be of the format "property: value;" - note the closing semi-colon. If no properties are set, then the default width and height of 400px will be used. See below for more detailed examples.') . '</p>';
$output .= '<p>' . t('Basic example:') . '<br />';
$output .= '<code>' . t('<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo">Google video example - default size</a>') . '</code></p>';
$output .= '<p>' . t('Basic example with caption:') . '<br />';
$output .= '<code>' . t('<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo[][my caption]">Google video example - default size</a>') . '</code></p>';
$output .= '<p>' . t('Grouped example:') . '<br />';
$output .= '<code>' . t('<a href="http://video.google.com/videoplay?docid=29023498723974239479" rel="lightvideo[group][my caption]">Grouped example 1</a><br />
<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo[group][my caption]">Grouped example 2</a>') . '</code></p>';
$output .= '<p>' . t('Controlling lightbox size example:') . '<br />';
$output .= '<code>' . t('<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo[|width:400px; height:300px;][my caption]">Google video example - custom size</a>') . '<br /></code></p>';
$output .= '<p>' . t('Supported Video Formats:') . '<br />';
$output .= t('asx, wmv, mov and swf videos should all be supported. A number of video providers are also supported, for example YouTube and Google Video. For full details on how to integrate these with lightbox, please see the online documentation.') . '</p>';
// HTML Content
$output .= '<h5 style="text-decoration: underline;">' . t('HTML Content') . '</h5>';
$output .= '<p>' . t('It\'s possible to show webpage content in the lightbox, using iframes. In this case the "rel" attribute should be set to <code>lightframe</code>. Again it\'s possible to group the items, (e.g. <code>lightframe[search]</code>) but in addition to that, it\'s possible to control some of the iframe properties. It\'s possible to set the \'width\', \'height\' and \'scrolling\' properties of the iframe. The properties are separated from the group name by a <code>|</code>, for example <code>lightframe[search|width:100px;]</code> and <code>lightframe[search|width:120px][my caption]</code>. If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightframe[|width:100px;]</code>. The properties should all be of the format "property: value;" - note the closing semi-colon. If no iframe properties are set, then the default width and height of 400px will be used. See below for more detailed examples.') . '</p>';
$output .= '<p>' . t('Basic example:') . '<br />';
$output .= '<code>' . t('<a href="http://www.google.com" rel="lightframe[][Search Google]">Search google</a>') . '</code></p>';
$output .= '<p>' . t('Grouped example:') . '<br />';
$output .= '<code>' . t('<a href="http://www.google.com" rel="lightframe[search]">Search google</a><br />
<a href="http://www.yahoo.com" rel="lightframe[search][Search Yahoo]">Search yahoo</a>') . '</code></p>';
$output .= '<p>' . t('Controlling iframe property example:') . '<br />';
$output .= '<code>' . t('<a href="http://www.google.com" rel="lightframe[|width:400px; height:300px; scrolling: auto;]">Search google</a>') . '</code></p>';
$output .= '<p>' . t('Controlling iframe property when grouped example:') . '<br />';
$output .= '<code>' . t('<a href="http://www.google.com" rel="lightframe[search|width:400px; height:300px; scrolling: auto;]">Search google</a><br />
<a href="http://www.yahoo.com" rel="lightframe[search|width:400px; height:300px;][Search Yahoo]">Search yahoo</a>') . '</code></p>';
// Inline Content Support
$output .= '<h5 style="text-decoration: underline;">' . t('Inline Content Support') . '</h5>';
$output .= '<p>' . t('It\'s possible to show HTML snippets in the lightbox, that is on the same domain. In this case the "rel" attribute should be set to <code>lightmodal</code>. Again it\'s possible to group the content, (e.g. <code>lightmodal[search]</code>) but in addition to that, it\'s possible to control some of the inline / modal properties. It\'s possible to set the \'width\', \'height\' and \'scrolling\' properties of the inline content. The properties are separated from the group name by a <code>|</code>, for example <code>lightmodal[search|width:100px;]</code> and <code>lightmodal[search|width:100px;][my caption]</code>. If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightmodal[|width:100px;]</code>. The properties should all be of the format "property: value;" - note the closing semi-colon. If no properties are set, then the default width and height of 400px will be used. See below for more detailed examples.') . '</p>';
$output .= '<p>' . t('Basic example:') . '<br />';
$output .= '<code>' . t('<a href="search.php" rel="lightmodal">Search</a>') . '</code></p>';
$output .= '<p>' . t('Basic example with caption:') . '<br />';
$output .= '<code>' . t('<a href="search.php" rel="lightmodal[][my caption]">Search</a>') . '</code></p>';
$output .= '<p>' . t('Grouped example:') . '<br />';
$output .= '<code>' . t('<a href="search.php" rel="lightmodal[search]">Search</a><br />
<a href="search.php?status=1" rel="lightmodal[search][published]">Search published content</a>') . '</code></p>';
$output .= '<p>' . t('Controlling modal property example:') . '<br />';
$output .= '<code>' . t('<a href="search.php" rel="lightmodal[|width:400px; height:300px; scrolling: auto;]">Search</a>') . '</code></p>';
$output .= '<p>' . t('Controlling modal property when grouped example:') . '<br />';
$output .= '<code>' . t('<a href="search.php" rel="lightmodal[search|width:400px; height:300px; scrolling: auto;]">Search</a><br />
<a href="search.php?status=1" rel="lightmodal[search|width:400px; height:300px;][Search published]">Search published content</a><br />
<a href="search.php?status=0" rel="lightmodal[search|width:400px; height:300px;][Search Unpublished]">Search unpublished content</a>') . '</code></p>';
// Keyboard Shortcuts
$output .= '<h3>' . t('Keyboard Shortcuts') . '</h3>';
$output .= '<p>' . t('The default keyboard shortcuts are listed below. You can override these on the admin page.') . '</p>';
$output .= '<table>';
$output .= '<tr><td>' . t('Close Lightbox') . '</td><td>x</td></tr>';
$output .= '<tr><td></td><td>o</td></tr>
<tr><td></td><td>c</td></tr>
<tr><td></td><td>ESC</td></tr>';
$output .= '<tr><td>' . t('Previous Image') . '</td><td>p</td></tr>';
$output .= '<tr><td></td><td>' . t('Left Arrow') . '</td></tr>';
$output .= '<tr><td>' . t('Next Image') . '</td><td>n</td></tr>';
$output .= '<tr><td></td><td>' . t('Right Arrow') . '</td></tr>';
$output .= '<tr><td>' . t('Toggle Zoom') . '</td><td>' . t('z (not available in slideshow)') . '</td></tr>';
$output .= '<tr><td>' . t('Toggle Play / Pause') . '</td><td>' . t('Spacebar (slideshow only)') . '</td></tr>';
$output .= '</table>';
$output .= '<p>' . t('Not all of the keyboard shortcuts work in the Opera browser, for example "z" for toggling the zoom and "spacebar" for toggling play / pause in slideshows. This can be overcome by updating your shortcut settings in the Opera preferences editor.') . '</p>';
break;
}
return !empty($output) ? $output : '';
}
/**
* Implementation of hook_permission().
*/
function lightbox2_permission() {
return array(
'administer lightbox2' => array(
'title' => t('Administer Lightbox2'),
'description' => t('Allow the user administer Lightbox2 settings'),
),
'download original image' => array(
'title' => t('Download Original'),
'description' => t('Create a link that allow the user download the original image'),
),
);
}
/**
* Implementation of hook_menu().
*/
function lightbox2_menu() {
$items = array();
$items['system/lightbox2/filter-xss'] = array(
'title' => 'Filter XSS',
'page callback' => 'lightbox2_filter_xss',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
$items['admin/config/user-interface/lightbox2'] = array(
'title' => 'Lightbox2',
'description' => 'Allows the user to configure the lightbox2 settings',
'file' => 'lightbox2.admin.inc',
'page callback' => 'lightbox2_settings_page',
'access callback' => 'user_access',
'access arguments' => array('administer lightbox2'),
);
$items['admin/config/user-interface/lightbox2/general'] = array(
'title' => 'General',
'description' => 'Allows the user to configure the lightbox2 settings',
'file' => 'lightbox2.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array('lightbox2_general_settings_form'),
'access callback' => 'user_access',
'access arguments' => array('administer lightbox2'),
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => 0,
);
$items['admin/config/user-interface/lightbox2/slideshow'] = array(
'title' => 'Slideshow',
'description' => 'Allows the user to configure the lightbox2 slideshow functionality',
'file' => 'lightbox2.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array('lightbox2_slideshow_settings_form'),
'access callback' => 'user_access',
'access arguments' => array('administer lightbox2'),
'type' => MENU_LOCAL_TASK,
'weight' => 1,
);
$items['admin/config/user-interface/lightbox2/html_content'] = array(
'title' => 'HTML Content',
'file' => 'lightbox2.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array('lightbox2_iframe_settings_form'),
'access callback' => 'user_access',
'access arguments' => array('administer lightbox2'),
'description' => 'Allows the user to configure the lightbox2 HTML content functionality.',
'type' => MENU_LOCAL_TASK,
'weight' => 2,
);
$items['admin/config/user-interface/lightbox2/automatic'] = array(
'title' => 'Automatic image handling',
'description' => 'Allows the user to configure the lightbox2 automatic image handling settings',
'file' => 'lightbox2.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array('lightbox2_auto_image_handling_settings_form'),
'access callback' => 'user_access',
'access arguments' => array('administer lightbox2'),
'type' => MENU_LOCAL_TASK,
'weight' => 3,
);
/**
if (module_exists('emfield') && module_exists('emvideo')) {
$items['video-cck/lightbox2/%node'] = array(
'page callback' => 'lightbox2_emvideo',
'page arguments' => array(2),
'access callback' => 'node_access',
'access arguments' => array('view', 2),
'type' => MENU_CALLBACK,
);
}
*/
/**
* There is not a version from acidfree to drupal 7
if (module_exists('acidfree') && module_exists('video')) {
$items['node/%node/lightframevideo'] = array(
'page callback' => 'lightbox2_acidfree_video',
'page arguments' => array(1),
'access callback' => 'lightbox2_acidfree_video_access',
'access arguments' => array(1),
'type' => MENU_CALLBACK,
);
}
*/
$items['user/login/lightbox2'] = array(
'title' => 'Login',
'page callback' => 'lightbox2_login',
'access callback' => 'user_is_anonymous',
'type' => MENU_CALLBACK,
);
$items['contact/lightbox2'] = array(
'title' => 'Contact',
'page callback' => 'lightbox2_contact',
'access arguments' => array('access site-wide contact form'),
'type' => MENU_CALLBACK,
);
return $items;
}
/**
* Acidfree video access control.
*/
/**
* No acidvideo for drupal 7
* function lightbox2_acidfree_video_access($node) {
if (user_access('play video') && node_access('view', $node)) {
return TRUE;
}
return FALSE;
}
*/
/**
* Implementation of hook_init().
*/
function lightbox2_init() {
if (lightbox2_exclude_these_paths() != 1) {
lightbox2_add_files();
}
}
/**
* Implementation of hook_filter_tips().
*/
/*
* This is not used any more on drupal 7, keep here only to help with the
* conversion, when there is a drupal 7 port, delete this function
function lightbox2_filter_tips($delta, $format, $long = FALSE) {
if ($delta == 0) {
if (!$long) {
return t('Image links with \'rel="lightbox"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
else {
$output = '<p>'. t('To add a lightbox to your images, add rel="lightbox" attribute to any link tag to activate the lightbox. For example:') .'</p>';
$output .= '<p>'. t('<code><a href="image-1.jpg" rel="lightbox">image #1</a></code>') .'</p>';
$output .= '<p>'. t('<code><a href="image-1.jpg" rel="lightbox[][my caption]">image #1</a></code>') .'</p>';
$output .= '<p>'. t('To show a caption either use the title attribute or put in the second set of square brackets of the rel attribute.') .'</p>';
$output .= '<p>'. t('If you have a set of related images that you would like to group, then you will need to include a group name between square brackets in the rel attribute. For example:') .'</p>';
$output .= '<p>'. t('<code><a href="image-1.jpg" rel="lightbox[roadtrip]">image #1</a><br /> <a href="image-2.jpg" rel="lightbox[roadtrip][caption 2]">image #2</a><br /> <a href="image-3.jpg" rel="lightbox[roadtrip][caption 3]">image #3</a><br /> </code>') .'</p>';
$output .= '<p>'. t('There are no limits to the number of image sets per page or how many images are allowed in each set.') .'</p>';
$output .= '<p>'. t('If you wish to turn the caption into a link, format your caption in the following way:') .'</p>';
$output .= '<p>'. t('<code><a href="image-1.jpg" rel=\'lightbox[][<a href="http://www.yourlink.com">View Image Details</a>]\' >image #1</a></code>') .'</p>';
return $output;
}
}
elseif ($delta == 1) {
return t('Image links from G2 are formatted for use with Lightbox2');
}
elseif ($delta == 2) {
if (!$long) {
return t('Image links with \'rel="lightshow"\' in the <a> tag will appear in a Lightbox slideshow when clicked on.');
}
else {
$output = '<p>'. t('To add a lightbox slideshow to your images, add rel="lightshow[slideshowname][slide caption]" attribute to any link tag to activate the slideshow. For example:') .'</p>';
$output .= '<p>'. t('<code><a href="image-1.jpg" rel="lightshow[show1]">image #1</a><br /> <a href="image-2.jpg" rel="lightshow[show1]">image #2</a><br /> <a href="image-3.jpg" rel="lightshow[show1]">image #3</a><br /> </code>') .'</p>';
$output .= '<p>'. t('The title attribute in the link tag is optional. The addition of this attribute enables the display of a caption with the image displayed in the lightbox.') .'</p>';
$output .= '<p>'. t('There are no limits to the number of slideshow image sets per page or how many images are allowed in each slideshow.') .'</p>';
$output .= '<p>'. t('If you wish to turn the caption into a link, format your caption in the following way:') .'</p>';
$output .= '<p>'. t('<code><a href="image-1.jpg" rel=\'lightshow[show1][<a href="http://www.yourlink.com">View Image Details</a>]\'>image #1</a></code>') .'</p>';
return $output;
}
}
elseif ($delta == 3) {
if (!$long) {
return t('Links to HTML content with \'rel="lightframe"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
else {
$output = '<p>'. t('It\'s possible to show webpage content in the lightbox, using iframes. In this case the "rel" attribute should be set to "lightframe". Again it\'s possible to group the content, (e.g. <code>lightframe[search][caption]</code>) but in addition to that, it\'s possible to control some of the iframe properties. It\'s possible to set the "width", "height" and "scrolling" properties of the iframe. The properties are separated from the group name by a <code>|</code>, for example <code>lightframe[search|width:100px;][caption]</code>. If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightframe[|width:100px;]</code>. The properties should all be of the format "property: value;" - note the closing semi-colon. If no iframe properties are set, then the default width and height of 400px will be used. See below for more detailed examples.') .'</p>';
$output .= '<p>'. t('Basic example:') .'<br />';
$output .= t('<code><a href="http://www.google.com" rel="lightframe">Search google</a></code>') .'</p>';
$output .= '<p>'. t('Grouped example:') .'<br />';
$output .= t('<code><a href="http://www.google.com" rel="lightframe[search][caption]">Search google</a><br /><a href="http://www.yahoo.com" rel="lightframe[search]">Search yahoo</a></code>') .'</p>';
$output .= '<p>'. t('Controlling iframe property example:') .'<br />';
$output .= t('<code><a href="http://www.google.com" rel="lightframe[|width:400px; height:300px; scrolling: auto;][caption]">Search google</a></code>') .'</p>';
$output .= '<p>'. t('Controlling iframe property when grouped example:') .'<br />';
$output .= t('<code><a href="http://www.google.com" rel="lightframe[search|width:400px; height:300px; scrolling: auto;]">Search google</a><br /><a href="http://www.yahoo.com" rel="lightframe[search|width:400px; height:300px;]">Search yahoo</a></code>') .'</p>';
return $output;
}
}
elseif ($delta == 4) {
if (!$long) {
return t('Links to video content with \'rel="lightvideo"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
else {
$output = '<p>'. t('It\'s possible to show video content in the lightbox. In this case the "rel" attribute should be set to <code>lightvideo</code>. It\'s possible to group videos and to control the size of the lightbox by setting the "width" and "height" properties. The properties can be configured like <code>lightvideo[group|width:300px; height: 200px;][caption]</code>. The properties should all be of the format "property: value;" - note the closing semi-colon. If no properties are set, then the default width and height of 400px will be used. See below for more detailed examples.') .'</p>';
$output .= '<p>'. t('Basic example:') .'<br />';
$output .= t('<code><a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo">Google video example - default size</a></code>') .'</p>';
$output .= '<p>'. t('Controlling lightbox size example:') .'<br />';
$output .= t('<code><a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo[group|width:400px; height:300px;][caption]">Google video example - custom size</a></code>') .'</p>';
$output .= '<p>'. t('Supported video formats include asx, wmv, mov and swf. A number of online video providers are also supported, including YouTube and Google Video. For a full list of the current supported video providers please see the documentation on drupal.org.') .'</p>';
return $output;
}
}
elseif ($delta == 5) {
if (!$long) {
return t('Links to inline or modal content with \'rel="lightmodal"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
else {
$output = '<p>'. t('It\'s possible to show HTML snippets in the lightbox, that is on the same domain. In this case the "rel" attribute should be set to "lightmodal". Again it\'s possible to group the content, (e.g. <code>lightmodal[group][caption]</code>) but in addition to that, it\'s possible to control some of the modal properties. It\'s possible to set the "width", "height" and "scrolling" properties of the modal. The properties are separated from the group name by a <code>|</code>, for example <code>lightmodal[group|width:100px;][caption]</code>. If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightmodal[|width:100px;]</code>. The properties should all be of the format "property: value;" - note the closing semi-colon. If no modal properties are set, then the default width and height of 400px will be used. See below for more detailed examples.') .'</p>';
$output .= '<p>'. t('Basic example:') .'<br />';
$output .= t('<code><a href="search.php" rel="lightmodal">Search</a></code>') .'</p>';
$output .= '<p>'. t('Grouped example:') .'<br />';
$output .= t('<code><a href="search.php" rel="lightmodal[search][caption 1]">Search</a><br /><a href="search.php?status=1" rel="lightmodal[search]">Search published</a></code>') .'</p>';
$output .= '<p>'. t('Controlling modal property example:') .'<br />';
$output .= t('<code><a href="search.php" rel="lightmodal[|width:400px; height:300px; scrolling: auto;][caption]">Search</a></code>') .'</p>';
$output .= '<p>'. t('Controlling modal property when grouped example:') .'<br />';
$output .= t('<code><a href="search.php" rel="lightmodal[search|width:400px; height:300px; scrolling: auto;]">Search</a><br /><a href="search.php?status=1" rel="lightmodal[search|width:400px; height:300px;]">Search published</a></code>') .'</p>';
return $output;
}
}
}
/**
* Implementation of hook_filter().
*/
/*
* This is not used any more on drupal 7, keep here only to help with the
* conversion, when there is a drupal 7 port, delete this function
function lightbox2_filter($op, $delta = 0, $format = -1, $text = '') {
switch ($op) {
case 'list':
return array(
0 => t('Lightbox filter'),
1 => t('Lightbox G2 filter'),
2 => t('Lightbox slideshow filter'),
3 => t('Lightbox iframe filter'),
4 => t('Lightbox video filter'),
5 => t('Lightbox modal filter'),
6 => t('Disable Lightbox iframe filter'),
);
case 'description':
if ($delta == 0) {
return t('Image links with \'rel="lightbox"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
elseif ($delta == 1) {
return t('Turns g2_filter links into Lightbox2 appropriate links');
}
elseif ($delta == 2) {
return t('Image links with \'rel="lightshow"\' in the <a> tag will appear in a Lightbox slideshow when clicked on.');
}
elseif ($delta == 3) {
return t('Links to HTML content with \'rel="lightframe"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
elseif ($delta == 4) {
return t('Links to video content with \'rel="lightvideo"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
elseif ($delta == 5) {
return t('Links to inline or modal content with \'rel="lightmodal"\' in the <a> tag will appear in a Lightbox when clicked on.');
}
elseif ($delta == 6) {
return t('It\'s possible to show webpage content in the lightbox, using iframes. In this case the "rel" attribute should be set to "lightframe". However, users can do this without any filters to be enabled. To prevent users from adding iframes to the site in this manner, then please enable this option.');
}
case 'process':
if ($delta == 1) {
$text = ' '. $text .' ';
$text = preg_replace('/ShowItem/', 'DownloadItem', $text);
$text = preg_replace('/<img\s+([^>]*?)src="/', '<img \1rel="lightbox" src="', $text);
$text = drupal_substr($text, 1, -1);
}
elseif ($delta == 6) {
$text = preg_replace('/<a([^>]*?)(rel=[\'"]*lightframe[\'"]*)([^>]*?)>/i', '<a\1\3>', $text);
}
return $text;
default:
return $text;
}
}
*/
/**
* Process callback for Lightbox G2 filter.
*/
function _lightbox2_process_filter($text, $format) {
$text = ' ' . $text . ' ';
$text = preg_replace('/ShowItem/', 'DownloadItem', $text);
$text = preg_replace('/src="/', 'rel="lightbox" src="', $text);
$text = drupal_substr($text, 1, -1);
return $text;
}
/**
* Process callback for Disable Lightbox iframe filter.
*/
function _lightbox2_process_disable_filter($text, $format) {
$text = preg_replace('/<a([^>]*?)(rel=[\'"]*lightframe[\'"]*)([^>]*?)>/i', '<a\1\3>', $text);
return $text;
}
/**
* Implements hook_filter_info().
*/
function lightbox2_filter_info() {
$filters = array();
$filters['lightbox2_filter'] = array(
'title' => t('Lightbox filter'),
'description' => t('Image links with \'rel="lightbox"\' in the <a> tag will appear in a Lightbox when clicked on.'),
);
$filters['lightbox2_gd_filter'] = array(
'title' => t('Lightbox GD filter'),
'description' => t('Turns g2_filter links into Lightbox2 appropriate links'),
'process callback' => '_lightbox2_process_filter',
);
$filters['lightbox_slideshow_filter'] = array(
'title' => t('Lightbox slideshow filter'),
'description' => t('Image links with \'rel="lightshow"\' in the <a> tag will appear in a Lightbox slideshow when clicked on.'),
);
$filters['lightbox_iframe_filter'] = array(
'title' => t('Lightbox iframe filter'),
'description' => t('Links to HTML content with \'rel="lightframe"\' in the <a> tag will appear in a Lightbox when clicked on.'),
);
$filters['lightbox_video_filter'] = array(
'title' => t('Lightbox video filter'),
'description' => t('Links to video content with \'rel="lightvideo"\' in the <a> tag will appear in a Lightbox when clicked on.'),
);
$filters['lightbox_modal_filter'] = array(
'title' => t('Lightbox modal filter'),
'description' => t('Links to inline or modal content with \'rel="lightmodal"\' in the <a> tag will appear in a Lightbox when clicked on.'),
);
$filters['lightbox_disable_iframe_filter'] = array(
'title' => t('Disable Lightbox iframe filter'),
'description' => t('It\'s possible to show webpage content in the lightbox, using iframes. In this case the "rel" attribute should be set to "lightframe". However, users can do this without any filters to be enabled. To prevent users from adding iframes to the site in this manner, then please enable this option.'),
'process callback' => '_lightbox2_process_disable_filter',
);
return ($filters);
}
/**
* Provide links to the CSS stylesheet and JS file associated with
* this module.
*/
function lightbox2_add_files() {
global $language, $user;
static $already_added = FALSE;
if ($already_added) {
return; // Don't add the JavaScript and CSS multiple times.
}
$already_added = TRUE;
// Load required js and css files.
$path = drupal_get_path('module', 'lightbox2');
// Initialise some variables.
$inline_image_handler = variable_get('lightbox2_inline', 0);
$flickr_image_handler = variable_get('lightbox2_flickr', 0);
$gallery2_block_handler = variable_get('lightbox2_gallery2_blocks', 0);
$image_assist_handler = variable_get('lightbox2_image_assist_custom', 0);
$image_node_handler = variable_get('lightbox2_image_node', 0);
$custom_class_handler = 0;
switch (variable_get('lightbox2_custom_class_handler', 0)) {
case 1:
$custom_class_handler = 'lightbox_ungrouped';
break;
case 2:
$custom_class_handler = 'lightbox';
break;
case 3:
$custom_class_handler = 'lightshow';
break;
case 4:
$custom_class_handler = 'lightframe_ungrouped';
break;
case 5:
$custom_class_handler = 'lightframe';
break;
}
// Set the list of image classes to format urls for.
$image_node_sizes = '';
$trigger_lightbox_classes = '';
$trigger_lightbox_group_classes = '';
$trigger_slideshow_classes = '';
$trigger_lightframe_classes = '';
$trigger_lightframe_group_classes = '';
// Inline module images.
switch ($inline_image_handler) {
case 1:
$trigger_lightbox_classes .= 'img.inline,';
break;
case 2:
$trigger_lightbox_group_classes .= 'img.inline,';
break;
case 3:
$trigger_slideshow_classes .= 'img.inline,';
break;
case 4:
$trigger_lightframe_classes .= 'img.inline,';
break;
case 5:
$trigger_lightframe_group_classes .= 'img.inline,';
break;
}
// Flickr images.
switch ($flickr_image_handler) {
case 1:
$trigger_lightbox_classes .= 'img.flickr-photo-img,img.flickr-photoset-img,';
break;
case 2:
$trigger_lightbox_group_classes .= 'img.flickr-photo-img,img.flickr-photoset-img,';
break;
case 3:
$trigger_slideshow_classes .= 'img.flickr-photo-img,img.flickr-photoset-img,';
break;
case 4:
$trigger_lightframe_classes .= 'img.flickr-photo-img,img.flickr-photoset-img,';
break;
case 5:
$trigger_lightframe_group_classes .= 'img.flickr-photo-img,img.flickr-photoset-img,';
break;
}
// Gallery2 block images.
switch ($gallery2_block_handler) {
case 1:
$trigger_lightbox_classes .= 'img.ImageFrame_image,img.ImageFrame_none,';
break;
case 2:
$trigger_lightbox_group_classes .= 'img.ImageFrame_image,img.ImageFrame_none,';
break;
case 3:
$trigger_slideshow_classes .= 'img.ImageFrame_image,img.ImageFrame_none,';
break;
case 4:
$trigger_lightframe_classes .= 'img.ImageFrame_image,img.ImageFrame_none,';
break;
case 5:
$trigger_lightframe_group_classes .= 'img.ImageFrame_image,img.ImageFrame_none,';
break;
}
// Image Assist custom size images.
switch ($image_assist_handler) {
case 1:
$trigger_lightbox_classes .= 'img.image-img_assist_custom,';
break;
case 2:
$trigger_lightbox_group_classes .= 'img.image-img_assist_custom,';
break;
case 3:
$trigger_slideshow_classes .= 'img.image-img_assist_custom,';
break;
case 4:
$trigger_lightframe_classes .= 'img.image-img_assist_custom,';
break;
case 5:
$trigger_lightframe_group_classes .= 'img.image-img_assist_custom,';
break;
}
// Image nodes.
if ($image_node_handler) {
$trigger_sizes = variable_get('lightbox2_trigger_image_size', array('thumbnail'));
usort($trigger_sizes, "sort_by_length");
foreach ($trigger_sizes as $size) {
$triggers = "img.$size, img.image-$size,";
if (empty($size)) {
if (user_access('view original images')) {
$triggers = "img._original, img.image-_original,";
}
}
else {
$image_node_sizes .= "\.$size|";
}
switch ($image_node_handler) {
case 1:
$trigger_lightbox_classes .= $triggers;
break;
case 2:
$trigger_lightbox_group_classes .= $triggers;
break;
case 3:
$trigger_slideshow_classes .= $triggers;
break;
case 4:
$trigger_lightframe_classes .= $triggers;
break;
case 5:
$trigger_lightframe_group_classes .= $triggers;
break;
}
}
}
// Custom images.
$custom_triggers = variable_get('lightbox2_custom_trigger_classes', '');
$custom_trigger_classes = '';
if ($custom_class_handler && !empty($custom_triggers)) {
$trigger_classes = preg_split("/(\r\n|\n)/", $custom_triggers);
foreach ($trigger_classes as $class) {
if (!empty($class)) {
$custom_trigger_classes .= "img.$class,";
}
}
}
$trigger_lightbox_classes = rtrim($trigger_lightbox_classes, ",");
$trigger_lightbox_group_classes = rtrim($trigger_lightbox_group_classes, ",");
$trigger_slideshow_classes = rtrim($trigger_slideshow_classes, ",");
$trigger_lightframe_classes = rtrim($trigger_lightframe_classes, ",");
$trigger_lightframe_group_classes = rtrim($trigger_lightframe_group_classes, ",");
$custom_trigger_classes = rtrim($custom_trigger_classes, ",");
$image_node_sizes = '(' . rtrim($image_node_sizes, "|") . ')';
$enable_video = variable_get('lightbox2_enable_video', FALSE);
$enable_login = $user->uid == 0 && variable_get('lightbox2_enable_login', FALSE);
$enable_contact = module_exists('contact') && variable_get('lightbox2_enable_contact', FALSE) && user_access('access site-wide contact form');
$display_image_size = variable_get('lightbox2_display_image_size', 'original');
if ($display_image_size == 'original' && user_access('view original images')) {
$display_image_size = '';
}
$font_color = variable_get('lightbox2_font_color', '000');
$box_color = variable_get('lightbox2_box_color', 'fff');
$file_path = base_path() . '(\w\w/)' . file_default_scheme() . ':/';
if ( variable_get('file_downloads', 'FILE_DOWNLOADS_PUBLIC') == 'FILE_DOWNLOADS_PRIVATE' ) {
$file_path = base_path() . '(\w\w/)system/files';
}
// Load the javascript settings.
$js_settings = array(
'rtl' => $language->direction,
'file_path' => $file_path,
'default_image' => base_path() . $path . '/images/brokenimage.jpg',
'border_size' => (int) variable_get('lightbox2_border_size', 10),
'font_color' => !empty($font_color) ? $font_color : '000',
'box_color' => !empty($box_color) ? $box_color : '000',
'top_position' => variable_get('lightbox2_top_position', ''),
'overlay_opacity' => str_replace(',', '.', variable_get('lightbox2_overlay_opacity', 0.8)),
'overlay_color' => variable_get('lightbox2_overlay_color', '000'),
'disable_close_click' => variable_get('lightbox2_disable_close_click', TRUE),
'resize_sequence' => (int)variable_get('lightbox2_resize_sequence', 0),
'resize_speed' => 1000 * str_replace(',', '.', variable_get('lightbox2_resize_speed', 0.4)),
'fade_in_speed' => 1000 * str_replace(',', '.', variable_get('lightbox2_fadein_speed', 0.4)),
'slide_down_speed' => 1000 * str_replace(',', '.', variable_get('lightbox2_slidedown_speed', 0.6)),
'use_alt_layout' => variable_get('lightbox2_use_alt_layout', FALSE),
'disable_resize' => variable_get('lightbox2_disable_resize', FALSE),
'disable_zoom' => variable_get('lightbox2_disable_zoom', FALSE),
'force_show_nav' => variable_get('lightbox2_force_show_nav', FALSE),
'show_caption' => variable_get('lightbox2_show_caption', TRUE),
'loop_items' => variable_get('lightbox2_loop_items', FALSE),
'node_link_text' => check_plain(variable_get('lightbox2_node_link_text', 'View Image Details')),
'node_link_target' => variable_get('lightbox2_node_link_target', FALSE),
'image_count' => check_plain(variable_get('lightbox2_image_count_str', 'Image !current of !total')),
'video_count' => check_plain(variable_get('lightbox2_video_count_str', 'Video !current of !total')),
'page_count' => check_plain(variable_get('lightbox2_page_count_str', 'Page !current of !total')),
'lite_press_x_close' => t('press !x to close', array('!x' => '<a href="#" onclick="hideLightbox(); return FALSE;"><kbd>x</kbd></a>')),
'download_link_text' => '',
'enable_login' => $enable_login,
'enable_contact' => $enable_contact,
// Automatic image handling settings.
'keys_close' => variable_get('lightbox2_keys_close', 'c x 27'),
'keys_previous' => variable_get('lightbox2_keys_previous', 'p 37'),
'keys_next' => variable_get('lightbox2_keys_next', 'n 39'),
'keys_zoom' => variable_get('lightbox2_keys_zoom', 'z'),
'keys_play_pause' => variable_get('lightbox2_keys_play_pause', '32'),
'display_image_size' => $display_image_size,
'image_node_sizes' => $image_node_sizes,
'trigger_lightbox_classes' => $trigger_lightbox_classes,
'trigger_lightbox_group_classes' => $trigger_lightbox_group_classes,
'trigger_slideshow_classes' => $trigger_slideshow_classes,
'trigger_lightframe_classes' => $trigger_lightframe_classes,
'trigger_lightframe_group_classes' => $trigger_lightframe_group_classes,
'custom_class_handler' => $custom_class_handler,
'custom_trigger_classes' => $custom_trigger_classes,
'disable_for_gallery_lists' => variable_get('lightbox2_disable_nested_galleries', TRUE),
'disable_for_acidfree_gallery_lists' => variable_get('lightbox2_disable_nested_acidfree_galleries', TRUE),
'enable_acidfree_videos' => variable_get('lightbox2_enable_acidfree_videos', TRUE),
// Slideshow settings.
'slideshow_interval' => variable_get('lightbox2_slideshow_interval', 5) * 1000,
'slideshow_automatic_start' => variable_get('lightbox2_slideshow_automatic_start', TRUE),
'slideshow_automatic_exit' => variable_get('lightbox2_slideshow_automatic_exit', TRUE),
'show_play_pause' => variable_get('lightbox2_slideshow_show_play_pause', TRUE),
'pause_on_next_click' => variable_get('lightbox2_slideshow_pause_on_next_click', FALSE),
'pause_on_previous_click' => variable_get('lightbox2_slideshow_pause_on_previous_click', TRUE),
'loop_slides' => variable_get('lightbox2_loop_slides', FALSE),
// Iframe settings.
'iframe_width' => (int)variable_get('lightbox2_default_frame_width', 600),
'iframe_height' => (int)variable_get('lightbox2_default_frame_height', 400),
'iframe_border' => (int)variable_get('lightbox2_frame_border', 1),
// Video settings.
'enable_video' => $enable_video,
);
if ($enable_video) {
$js_settings['flvPlayer'] = url(check_plain(trim(variable_get('lightbox2_flv_player_path', 'flvplayer.swf'), '/')));
$js_settings['flvFlashvars'] = check_plain(variable_get('lightbox2_flv_player_flashvars', ''));
}
// Only supply these if the user has the correct permissions.
if (user_access('download original image') && user_access('view original images')) {
$js_settings['download_link_text'] = check_plain(variable_get('lightbox2_download_link_text', 'Download Original'));
}
drupal_add_js(array('lightbox2' => $js_settings), array( 'type' => 'setting' ) );
// Check where we should load the javascript files - header or footer.
$js_location = variable_get('lightbox2_js_location', 'header');
// Lightbox2 Plus.
if (!variable_get('lightbox2_lite', FALSE)) {
$css = $path . '/css/lightbox.css';
if (variable_get('lightbox2_use_alt_layout', FALSE)) {
$css = $path . '/css/lightbox_alt.css';
}
drupal_add_css($css);
// Check to see if any automatic image handling options are enabled.
if ($image_node_handler || $flickr_image_handler || $gallery2_block_handler || $inline_image_handler || $image_assist_handler || $custom_triggers != '') {
drupal_add_js($path . '/js/auto_image_handling.js', array( 'scope' => $js_location ) );
}
if (variable_get('lightbox2_enable_video', FALSE)) {
drupal_add_js($path . '/js/lightbox_video.js', array( 'scope' => $js_location ) );
}
if ($enable_login || $enable_contact) {
drupal_add_js($path . '/js/lightbox_modal.js', array( 'scope' => $js_location ) );
}
//drupal_add_js($path .'/js/prototype.js', array( 'scope' => $js_location, 'cache' => false ) );
//drupal_add_js($path .'/js/scriptaculous.js', array( 'scope' => $js_location, 'cache' => false ) );
drupal_add_js($path . '/js/lightbox.js', array( 'scope' => $js_location , 'cache' => FALSE) );
}
// Lightbox Lite.
else {
$css = $path . '/css/lightbox_lite.css';
drupal_add_css($css);
drupal_add_js($path . '/js/lightbox_lite.js', array( 'scope' => $js_location ) );
}
}
/**
* Implementation of hook_field_formatter_info().
*
* Add certain lightbox and imagecache formatters to CCK image fields if
* the imagefield.module and the imagecache.module exist. Add additional
* formatters if emfield, emimage and/or emvideo modules exist.
*/
function lightbox2_field_formatter_info() {
$formatters = array();
if (module_exists('image')) {
$image = $lightbox = image_styles();
$types = array('lightbox', 'lightshow');
foreach ($types as $type) {
foreach ($image as $image_key => $image_value ) {
$formatters['lightbox2__' . $type . '__' . $image_key . '__original'] = array(
'label' => 'Lightbox2: ' . $type . ': ' . $image_key . '->original',
'field types' => array('image'),
);
foreach ($lightbox as $lightbox_key => $lightbox_value ) {
$formatters['lightbox2__' . $type . '__' . $image_key . "__" . $lightbox_key] = array(
'label' => 'Lightbox2: ' . $type . ': ' . $image_key . '->' . $lightbox_key,
'field types' => array('image'),
);
}
}
}
}
return $formatters;
/*
// Handle imagefield and filefield images.
if (module_exists('image')) {
$rules = array();
if (function_exists('image_styles')) {
$presets = image_styles();
foreach ($presets as $preset_id => $preset_info) {
$rules[$preset_id] = $preset_info['name'];
}
}
$iframe['image__lightframe2__original__node'] = array(
'label' => 'Lightbox2 iframe: original->node page',
'field types' => array('image', 'file'),
);
$iframe['imagefield__lightframe2__link__node'] = array(
'label' => 'Lightbox2 iframe: link->node page',
'field types' => array('image', 'file'),
);
foreach ($rules as $view_rule) {
$lightbox['image__lightbox2__original__'. $view_rule] = array(
'label' => 'Lightbox2: original->'. $view_rule,
'field types' => array('image', 'file'),
);
$lightbox['imagefield__lightbox2_compact__original__'. $view_rule] = array(
'label' => 'Lightbox2: original->'. $view_rule . ' compact',
'field types' => array('image', 'file'),
);
$lightbox['image__lightbox2__'. $view_rule .'__original'] = array(
'label' => 'Lightbox2: '. $view_rule .'->original',
'field types' => array('image', 'file'),
);
$lightbox['imagefield__lightbox2_compact__'. $view_rule .'__original'] = array(
'label' => 'Lightbox2: '. $view_rule .'->original compact',
'field types' => array('image', 'file'),
);
$lightbox['imagefield__lightbox2__link__'. $view_rule] = array(
'label' => 'Lightbox2: link->'. $view_rule,
'field types' => array('image', 'file'),
);
$slideshow['image__lightshow2__original__'. $view_rule] = array(
'label' => 'Lightbox2 slideshow: original->'. $view_rule,
'field types' => array('image', 'file'),
);
$slideshow['imagefield__lightshow2_compact__original__'. $view_rule] = array(
'label' => 'Lightbox2 slideshow: original->'. $view_rule . ' compact',
'field types' => array('image', 'filefield'),
);
$slideshow['image__lightshow2__'. $view_rule .'__original'] = array(
'label' => 'Lightbox2 slideshow: '. $view_rule .'->original',
'field types' => array('image', 'file'),
);
$slideshow['imagefield__lightshow2_compact__'. $view_rule .'__original'] = array(
'label' => 'Lightbox2 slideshow: '. $view_rule .'->original compact',
'field types' => array('image', 'filefield'),
);
$slideshow['imagefield__lightshow2__link__'. $view_rule] = array(
'label' => 'Lightbox2 slideshow: link->'. $view_rule,
'field types' => array('image', 'filefield'),
);
$iframe['image__lightframe2__'. $view_rule .'__node'] = array(
'label' => 'Lightbox2 iframe: '. $view_rule .'->node page',
'field types' => array('image', 'file'),
);
foreach ($rules as $lightbox_rule) {
$lightbox['image__lightbox2__'. $view_rule .'__'. $lightbox_rule] = array(
'label' => 'Lightbox2: '. $view_rule .'->'. $lightbox_rule,
'field types' => array('image', 'file'),
);
$lightbox['imagefield__lightbox2_compact__'. $view_rule .'__'. $lightbox_rule] = array(
'label' => 'Lightbox2: '. $view_rule .'->'. $lightbox_rule . ' compact',
'field types' => array('image', 'filefield'),
);
$slideshow['image__lightshow2__'. $view_rule .'__'. $lightbox_rule] = array(
'label' => 'Lightbox2 slideshow: '. $view_rule .'->'. $lightbox_rule,
'field types' => array('image', 'file'),
);
$slideshow['imagefield__lightshow2_compact__'. $view_rule .'__'. $lightbox_rule] = array(
'label' => 'Lightbox2 slideshow: '. $view_rule .'->'. $lightbox_rule . ' compact',
'field types' => array('image', 'filefield'),
);
}
}
// Adding them now so they are in some sort of sensible order.
$formatters = array_merge($lightbox, $slideshow, $iframe);
}
if (module_exists('emfield') && module_exists('emimage')) {
$formatters['emimage_lightbox2'] = array(
'label' => t('Lightbox2: Image Thumbnail -> Original'),
'field types' => array('emimage'),
);
$formatters['emimage_lightshow2'] = array(
'label' => t('Lightbox2 slideshow: Image Thumbnail -> Original'),
'field types' => array('emimage'),
);
$formatters['emimage_lightframe2'] = array(
'label' => t('Lightbox2 iframe: Image Thumbnail -> Content'),
'field types' => array('emimage'),
);
}
if (variable_get('lightbox2_enable_video', FALSE) && module_exists('emfield') && module_exists('emvideo')) {
$formatters['emvideo_lightvideo'] = array(
'label' => t('Lightbox2: Image Thumbnail -> Full Size Video'),
'field types' => array('emvideo'),
);
}
if (module_exists('file')) {
$formatters['file_lightframe'] = array(
'label' => t('Lightbox2 iframe'),
'field types' => array('file'),
);
}
*/
}
/**
* Implements hook_field_formatter_view().
*
* Temporarily a (pretty much) straight copy of image's
*/
function lightbox2_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
$element = array();
$pieces = explode('__', $display['type']);
$lightbox_type = $pieces[1];
$image_style = $pieces[2];
$lightbox_style = $pieces[3];
if ($image_style == 'original') {
$image_style = NULL;
}
if ($lightbox_style == 'original') {
$lightbox_style = NULL;
}
if ($entity_type == 'node') {
$node_id = $entity->nid;
}
foreach ($items as $delta => $item) {
$uri = array(
'path' => file_create_url($item['uri']),
'options' => array(),
);
$element[$delta] = array(
'#theme' => 'lightbox2_image',
'#item' => $item,
'#lightbox_type' => $lightbox_type,
'#image_style' => $image_style,
'#lightbox_style' => $lightbox_style,
'#path' => $uri,
'#node_id' => $node_id,
'#field_name' => $field['field_name'],
);
}
return ($element);
/*$element = array();
// Check if the formatter involves a particular image style.
//$matches = array();
//if (preg_match('/__([a-z0-9_]+)/', $display['type'], $matches)) {
// $image_style = $matches[1];
//}
$pieces = explode('__', $display);
$image_style = $pieces[2];
// Temporary hardcoding link_file and image_style for debugging
//$image_style = 'thumbnail';
$link_file = TRUE;
foreach ($items as $delta => $item) {
if (isset($link_file)) {
$uri = array(
'path' => file_create_url($item['uri']),
'options' => array(),
);
}
$element[$delta] = array(
'#theme' => 'lightbox2_image',
'#item' => $item,
'#image_style' => isset($image_style) ? $image_style : '',
'#path' => isset($uri) ? $uri : '',
);
}
return $element;*/
}
/**
* Implementation of hook_theme().
*/
function lightbox2_theme($existing, $type, $theme, $path) {
$theme = array();
$theme['lightbox2_image'] = array(
'variables' => array(
'item' => NULL,
'path' => NULL,
'lightbox_type' => NULL,
'image_style' => NULL,
'lightbox_style' => NULL,
'node_id' => NULL,
'field_name' => NULL,
),
//'variables' => array(),
);
//return($theme);
/*
$theme = array(
'lightbox2_image' => array(
'variables' => array(
'item' => NULL,
'path' => NULL,
'image_style' => NULL
),
),
// Emfield theme functions.
'lightbox2_emimage' => array(
'variables' => array(
'field' => NULL,
'item' => NULL,
'formatter' => NULL,
'node' => NULL,
'args' => array()
),
),
'lightbox2_formatter_emimage' => array(
'render element' => 'element',
),
'lightbox2_formatter_emimage_lightbox2' => array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_emimage',
),
'lightbox2_formatter_emimage_lightshow2' => array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_emimage',
),
'lightbox2_formatter_emimage_lightframe2' => array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_emimage',
),
'lightbox2_formatter_emvideo_lightvideo' => array(
'render element' => 'element',
),
'lightbox2_emvideo' => array(
'variables' => array(
'field' => NULL,
'item' => NULL,
'formatter' => NULL,
'node' => NULL
),
),
// Filefield theme functions.
'lightbox2_formatter_filefield_lightframe' => array(
'render element' => 'element',
),
'lightbox2_file_formatter_lightbox2_iframe' => array(
'variables' => array(
'file' => NULL,
'field' => NULL,
'file_formatter_settings' => NULL
),
),
// Global imagecache + imagefield theme functions.
'lightbox2_formatter_imagefield' => array(
'render element' => 'element',
),
'imagefield_image_imagecache_lightbox2' => array(
'variables' => array(
'view_preset' => NULL,
'field_name' => NULL,
'item' => NULL,
'node' => NULL,
'rel' => 'lightbox',
'args' => array()
),
),
);
// Additional imagecache + imagefield theme functions, by preset.
if (module_exists("image")) {
$theme['lightbox2_formatter_imagefield__lightframe2__original__node'] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
);
$theme['lightbox2_formatter_imagefield__lightframe2__link__node'] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
foreach (image_styles() as $src) {
$theme['lightbox2_formatter_imagefield__lightbox2__'. $src['name'] .'__original'] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
$theme['lightbox2_formatter_imagefield__lightbox2_compact__'. $src['name'] .'__original'] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
$theme['lightbox2_formatter_imagefield__lightshow2__'. $src['name'] .'__original'] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
);
$theme['lightbox2_formatter_imagefield__lightshow2_compact__'. $src['name'] .'__original'] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
$theme['lightbox2_formatter_imagefield__lightbox2__original__'. $src['name']] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
);
$theme['lightbox2_formatter_imagefield__lightbox2_compact__original__'. $src['name']] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
$theme['lightbox2_formatter_imagefield__lightshow2__original__'. $src['name']] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
);
$theme['lightbox2_formatter_imagefield__lightshow2_compact__original__'. $src['name']] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
$theme['lightbox2_formatter_imagefield__lightframe2__'. $src['name'] .'__node'] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
);
$theme['lightbox2_formatter_imagefield__lightbox2__link__'. $src['name']] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
$theme['lightbox2_formatter_imagefield__lightshow2__link__'. $src['name']] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
foreach (image_styles() as $dest) {
$theme['lightbox2_formatter_imagefield__lightbox2__'. $src['name'] .'__'. $dest['name']] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
);
$theme['lightbox2_formatter_imagefield__lightbox2_compact__'. $src['name'] .'__'. $dest['name']] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
$theme['lightbox2_formatter_imagefield__lightshow2__'. $src['name'] .'__'. $dest['name']] = array(
'render element' => 'element',
'function' => 'theme_lightbox2_formatter_imagefield',
);
$theme['lightbox2_formatter_imagefield__lightshow2_compact__'. $src['name'] .'__'. $dest['name']] = array(
'arguments' => array('element' => NULL),
'function' => 'theme_lightbox2_formatter_imagefield',
'file' => 'lightbox2.formatter.inc',
);
}
}
}
// Additional Insert theme functions.
if (module_exists('insert')) {
// Theme functions in lightbox2.insert.inc.
$theme['lightbox2_insert_image'] = array(
'arguments' => array('item' => NULL, 'widget' => NULL, 'type' => NULL, 'image_preset_name' => NULL, 'link_preset_name' => NULL),
'template' => 'lightbox2-insert-image',
);
}*/
foreach ($theme as &$array) {
$array['file'] = 'lightbox2.formatter.inc';
}
return $theme;
}
/**
* Configures settings and outputs the video.
*
* @param nid
* The node id.
* @param width
* The lightbox video width.
* @param height
* The lightbox video height.
* @param field_name
* The name of the cck field the video is contained in.
* @param provider
* The name of the 3rd party video provider.
* @param id
* The video id.
*/
/*
function lightbox2_emvideo($node, $width, $height, $field_name, $provider, $id) {
$field = content_fields($field_name);
$field['widget']['video_width'] = $width;
$field['widget']['video_height'] = $height;
$field['widget']['video_autoplay'] = 1;
if (!content_access('view', $field, NULL, $node)) {
drupal_access_denied();
return;
}
$items = $node->$field_name;
if (is_array($items)) {
foreach ($items as $item) {
if ($item['provider'] == $provider && $item['value'] == $id) {
break;
}
}
}
print theme('emvideo_video_video', $field, $item, 'video_video', $node);
}*/
/**
* Return TRUE if current path is disabled for lightbox according to
* lightbox2_page_list and lightbox2_page_init_action.
*/
function lightbox2_exclude_these_paths() {
$action = variable_get('lightbox2_page_init_action', 'page_disable');
$page_list = variable_get('lightbox2_page_list', '');
if (!empty($page_list)) {
// Retrieve Drupal alias for the current path (if exists).
$alias = drupal_get_path_alias($_GET['q']);
if (drupal_match_path($_GET['q'], $page_list) || drupal_match_path($alias, $page_list)) {
return ($action == 'page_disable' ? 1 : 0);
}
}
return ($action == 'page_disable' ? 0 : 1);
}
/**
* Preprocess function for template by theme('page').
*/
function lightbox2_preprocess_page(&$variables) {
if (arg(0) != 'node' || arg(2) != 'lightbox2') {
return;
}
//Overwrite template_preprocess_page() region settings.
global $theme;
// Retrieve all block regions.
$regions = system_region_list($theme);
// Remove all region content assigned via blocks.
foreach (array_keys($regions) as $region) {
if ($region != 'content') {
$variables[$region] = NULL;
}
}
// Set up layout variable to none.
$variables['layout'] = 'none';
//additional template files for e.g. page-node-lightbox.tpl.php are allready implemented through template_preprocess_page()
}
/**
* Display the video object.
*
* Displays the video object for a specified nid. It is used for displaying
* videos in acidfree lists in a lightbox when the thumbnail is clicked on. It
* is only triggered for the url 'node/%nid/lightframevideo'.
*
* @param $node
* The $node object.
*/
/*
function lightbox2_acidfree_video($node) {
print theme('video_player', array( 'node' => $node ) );
}
*/
/**
* Implementation of filefield's hook_file_formatter_info().
*/
function lightbox2_file_formatter_info() {
return array(
'lightbox2_iframe' => array(
'suitability callback' => 'lightbox2_check_filefield_extension',
'title' => t('Lightbox2 iframe'),
'description' => t('Displays all kinds of files in a popup lightbox in an iframe.'),
),
'lightbox2_image' => array(
'suitability callback' => 'lightbox2_check_filefield_image_extension',
'title' => t('Lightbox2 image'),
'description' => t('Displays image files in a popup lightbox.'),
),
);
}
/**
* Suitability callback function for the filefield formatter.
*
* @param $file
* The file object, containing filepath, mime type, etc.
* @param $field
* CCK field information.
* @return
* True if file extension is supported.
*/
function lightbox2_check_filefield_extension($file, $field) {
$ext = array_pop(explode('.', $file->filename));
return lightbox2_supported_file_extension($ext);
}
/**
* Suitability callback function for the image filefield formatter.
*
* @param $file
* The file object, containing filepath, mime type, etc.
* @param $field
* CCK field information.
* @return
* True if file extension is supported.
*/
function lightbox2_check_filefield_image_extension($file, $field) {
$ext = array_pop(explode('.', $file->filename));
return lightbox2_supported_file_extension($ext, 'image');
}
/**
* Check whether a given file extension is supported by the lightbox iframe.
*
* @param $ext
* File extension
* @param $type
* Type of file extensions to check.
* @return
* TRUE if extension is supported.
*/
function lightbox2_supported_file_extension($ext, $type = 'all') {
$image_extensions = array('png', 'jpg', 'jpeg', 'gif', 'bmp');
$movie_extensions = array('dv', 'mov', 'moov', 'movie', 'mp4', 'asf', 'wm', 'wmv', 'avi', 'mpg', 'mpeg');
$web_extensions = array('asp', 'aspx', 'cgi', 'cfm', 'htm', 'html', 'pl', 'php', 'php3', 'php4', 'php5', 'phtml', 'rb', 'rhtml', 'shtml', 'txt', 'vbs');
$misc_extensions = array('pdf');
$extensions = array();
switch ($type) {
case 'image':
$extensions = $image_extensions;
break;
case 'movie':
$extensions = $movie_extensions;
break;
case 'web':
$extensions = $web_extensions;
break;
case 'misc':
$extensions = $misc_extensions;
break;
case 'all':
default:
$extensions = array_merge($image_extensions, $movie_extensions, $web_extensions, $misc_extensions);
break;
}
if (in_array(drupal_strtolower($ext), $extensions)) {
return TRUE;
}
return FALSE;
}
/**
* Helper function to compare the string length of two items. Used when trying
* to sort an array by value length.
*
* @param $a
* String to compare.
* @param $b
* String to compare.
* @return
* 0 if they are the same length, -1 if $a is longer than $b, 1 otherwise.
*/
function sort_by_length($a, $b) {
if ($a == $b) {
return 0;
}
return (drupal_strlen($a) > drupal_strlen($b) ? -1 : 1);
}
/**
* Get the user login form.
*/
function lightbox2_login() {
// do not use lightbox2 for failed validation ie: bad password
// instead, return the fully rendered Drupal page with errors.
if (count($_POST)) {
return drupal_get_form('user_login_block');
}
else {
print drupal_render(drupal_get_form('user_login_block'));
// If the OpenID module is enabled, the javascript and css may not exist
// on the page, so add them dynamically.
if (module_exists('openid')) {
$path = drupal_get_path('module', 'openid');
$js_file = base_path() . $path . '/openid.js';
$css_file = base_path() . $path . '/openid.css';
// Load the javascript dynamically.
print '<script type="text/javascript">$.getScript("' . $js_file . '", function () {if ($.isFunction(Drupal.behaviors.openid)) { Drupal.behaviors.openid(document); } });</script>';
// Load the css file dynamically.
print '<script type="text/javascript">
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", "'. $css_file . '");
document.getElementsByTagName("head")[0].appendChild(fileref);
</script>';
}
// drupal_add_js() with 'inline' didn't seem to work, possibly because this is
// AJAX loaded content.
print '<script type="text/javascript">Drupal.attachBehaviors();</script>';
}
exit;
}
/**
* Get the contact form.
*/
function lightbox2_contact() {
if (module_exists('contact') && variable_get('lightbox2_enable_contact', FALSE) && user_access('access site-wide contact form')) {
$path = drupal_get_path('module', 'contact');
include_once($path . '/contact.pages.inc');
print drupal_render(drupal_get_form('contact_site_form'));
// drupal_add_js() with 'inline' didn't seem to work, possibly because this is
// AJAX loaded content.
print '<script type="text/javascript">Drupal.attachBehaviors();</script>';
exit;
}
}
/**
* Implementation of hook_form_alter().
*
* Update the page action and input size.
*
* @param &$form
* General reference used in drupal, defining the structure & the fields of
* a form.
* @param $form_state
* General variable, used to control the processing of the form.
* @param $form_id
* The default is "user_login_block"; hold the page where the function is being
* used.
* @return
* Return the structure of the form.
*/
function lightbox2_form_user_login_block_alter(&$form, $form_state, $form_id = "user_login_block") {
if ($form_id == 'user_login_block' && arg(0) == 'user' && arg(1) == 'login' && arg(2) == 'lightbox2') {
$form['#action'] = url('user/login/lightbox2', array('query' => array('destination' => $_GET['destination'])));
}
}
function lightbox2_form_contact_site_form_alter(&$form, $form_state, $form_id = "contact_site_form") {
if ($form_id == 'contact_site_form' && arg(0) == 'contact' && arg(1) == 'lightbox2') {
$form['#action'] = url('contact', array('query' => array('destination' => $_GET['destination'])));
}
}
/**
* Implementation of hook_link_alter().
*
* Add a lightbox2 rel attribute to the image link sizes on the image node.
*/
function lightbox2_link_alter(&$links, $node) {
$image_node_handler = variable_get('lightbox2_image_node', 0);
// Only operate on image nodes and if automatic handling for image nodes is
// enabled. Also ensure $links is an array (bug in contemplate module).
if (!$image_node_handler || ($node->type != 'image' && $image_node_handler) || !is_array($links)) {
return;
}
$trigger_sizes = variable_get('lightbox2_trigger_image_size', array('thumbnail'));
// Change original ('original') to '_original'.
if (isset($trigger_sizes['original'])) {
unset($trigger_sizes['original']);
$trigger_sizes['_original'] = '_original';
}
$rel = '';
switch ($image_node_handler) {
case 1: // Lightbox.
case 2: // Lightbox grouped.
case 3: // Slideshow.
$rel = 'lightbox';
break;
case 4: // Lightframe.
case 5: // Lightframe grouped.
$rel = 'lightframe';
break;
}
$rel = $rel . '[][' . $node->title . ']';
foreach ($trigger_sizes as $size) {
if (isset($links['image_size_' . $size])) {
$links['image_size_' . $size]['attributes']['rel'] = $rel;
$links['image_size_' . $size]['href'] = $node->images[$size];
unset($links['image_size_' . $size]['query']);
}
}
}
/**
* Implementation of hook_views_api().
*/
function lightbox2_views_api() {
return array(
'api' => '3.0',
);
}
function lightbox2_filter_xss() {
$allowed_tags = trim(variable_get('lightbox2_filter_xss_allowed_tags', 'p, br, a, em, strong, cite, code, ul, ol, li, dl, dt, dd, '));
$allowed_tags = (empty($allowed_tags) ? array() : preg_split('/[,\s]+/', $allowed_tags));
if (!empty($_POST['allowed_tags']) && $_POST['allowed_tags'] != 'undefined') {
$allowed_tags = explode(',', $_POST['allowed_tags']);
$output = filter_xss($_POST['string'], $allowed_tags);
}
else {
$output = filter_xss($_POST['string'], $allowed_tags);
}
drupal_json_output($output);
}