source: extensions/lightbox/lightbox.php @ 12704

Last change on this file since 12704 was 12704, checked in by patdenice, 12 years ago

Compatibility with RV Thumbnail Scroller

File size: 2.9 KB
Line 
1<?php
2
3global $page, $conf, $template, $user;
4
5include_once(LIGHTBOX_PATH.'functions.inc.php');
6$params = unserialize($conf['lightbox']);
7$conf['lightbox_rel'] = isset($conf['lightbox_rel']) ? ++$conf['lightbox_rel'] : 0;
8$selector = 'a[rel=colorbox'.$conf['lightbox_rel'].']';
9
10$template->func_combine_script(array('id'=>'jquery.colorbox', 'path'=>'plugins/lightbox/js/jquery.colorbox.js'), $smarty);
11$template->func_combine_css(array('path'=>'plugins/lightbox/theme/'.$params['theme'].'/colorbox.css'), $smarty);
12$template->block_html_head('','
13<script type="text/javascript">
14function PWG_Colorbox() {
15  jQuery("'.$selector.'").attr("href", function () {
16    return this.name;   
17  });
18  jQuery("'.$selector.'").colorbox({
19    current: "",
20    transition: "'.$params['transition'].'",
21    speed: "'.$params['transition_speed'].'",
22    initialWidth: "'.(!empty($params['initial_width']) ? $params['initial_width'] : $config_default['initial_width']).'",
23    initialHeight: "'.(!empty($params['initial_height']) ? $params['initial_height'] : $config_default['initial_height']).'",
24    width: '.(!empty($params['fixed_width']) ? '"'.$params['fixed_width'].'"' : 'false').',
25    height: '.(!empty($params['fixed_height']) ? '"'.$params['fixed_height'].'"' : 'false').'
26    },
27    function() {
28      jQuery.post("'.get_root_url().'plugins/lightbox/save_history.php", {
29        imgid:   this.id,
30        catid:   "'.@$page['category']['id'].'",
31        section: "'.@$page['section'].'",
32        tagids:  "'.@implode(',', @$page['tag_ids']).'"
33    });
34  });
35}
36jQuery(document).ready(PWG_Colorbox);
37jQuery(window).bind("RVTS_loaded", PWG_Colorbox);
38</script>
39', $smarty, $repeat);
40
41foreach($tpl_thumbnails_var as $key => $tpl_var)
42{
43  // Image URL for lightbox
44  if ($newurl = get_lightbox_url($pictures[$key]))
45  {
46    $tpl_thumbnails_var[$key]['URL'] .= '" id="img-'.$pictures[$key]['id'].'" name="'.$newurl;
47  }
48  else
49  {
50    continue;
51  }
52
53  // Title display
54  if ($params['display_name'])
55  {
56    $tpl_thumbnails_var[$key]['URL'] .= '" title="'.get_lightbox_title($pictures[$key], $params['name_link']);
57  }
58
59  // Arrows display
60  if ($params['display_arrows'])
61  {
62    $tpl_thumbnails_var[$key]['URL'] .= '" rel="colorbox'.$conf['lightbox_rel'];
63  }
64}
65
66// Add all items from category
67if ($params['display_arrows'] and $params['all_cat'] and !empty($page['navigation_bar']))
68{
69  $rank_of = array_flip($page['items']);
70  if ($page['start'] > 0)
71  {
72    $selection = array_slice($page['items'], 0, $page['start']);
73    $template->concat('PLUGIN_INDEX_CONTENT_BEGIN', get_lightbox_extra_pictures($selection, $rank_of, $params['name_link']));
74  }
75
76  if (count($page['items']) > $page['start'] + $page['nb_image_page'])
77  {
78    $selection = array_slice($page['items'], $page['start'] + $page['nb_image_page']);
79    $template->concat('PLUGIN_INDEX_CONTENT_END', get_lightbox_extra_pictures($selection, $rank_of, $params['name_link']));
80  }
81}
82
83?>
Note: See TracBrowser for help on using the repository browser.