source: extensions/FacebookPlug/Plugin/include/picture.inc.php @ 8282

Last change on this file since 8282 was 8282, checked in by rub, 13 years ago

Add facepile

  • Property svn:eol-style set to LF
File size: 3.7 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | FacebookPlug - a Piwigo Plugin                                        |
4// | Copyright (C) 2010 Ruben ARNAUD - rub@piwigo.org                      |
5// +-----------------------------------------------------------------------+
6// | This program is free software; you can redistribute it and/or modify  |
7// | it under the terms of the GNU General Public License as published by  |
8// | the Free Software Foundation                                          |
9// |                                                                       |
10// | This program is distributed in the hope that it will be useful, but   |
11// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
12// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
13// | General Public License for more details.                              |
14// |                                                                       |
15// | You should have received a copy of the GNU General Public License     |
16// | along with this program; if not, write to the Free Software           |
17// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
18// | USA.                                                                  |
19// +-----------------------------------------------------------------------+
20
21if (!defined('PHPWG_ROOT_PATH'))
22{
23  die('Hacking attempt!');
24}
25
26include_once(FBP_DIR.'/include/common.inc.php');
27include_once(FBP_DIR.'/include/header.inc.php');
28
29function fbp_render_element_content($content, $current_picture)
30{
31  global $template, $user, $page, $conf, $picture;
32
33  if ($page['slideshow'] and $conf['fbp']['social_plugin_facepile']['enabled'])
34  {
35    $tpl = 'social.plugin.facepile';
36    $type = $conf['fbp']['social_plugin_facepile']['url_type'];
37  }
38  else if ($conf['fbp']['social_plugin_like_button']['enabled'])
39  {
40    $tpl = 'social.plugin.like.button';
41    $type = $conf['fbp']['social_plugin_like_button']['url_type'];
42  }
43  else
44  {
45    // nothing to do
46    return $content;
47  }
48
49  // define picture FB link
50  // Always use full url for FB social plugin
51  set_make_full_url();
52  if ($type == 'image')
53  {
54    $fbp_url_picture = get_element_url($current_picture);
55  }
56  else
57  {
58    $fbp_url_picture = make_picture_url(array('image_id' => $page['image_id']));
59  }
60  unset_make_full_url();
61  $template->assign('fbp_url_picture', $fbp_url_picture);
62
63  // XFBML implementation
64  $template->set_filename($tpl, FBP_DIR.'/tpl/'.$tpl.'.tpl');
65  $content .= $template->parse($tpl, true);
66
67  return $content;
68}
69
70function ftp_loc_end_section_init()
71{
72  global $conf;
73
74  if ($conf['fbp']['social_plugin_like_button']['enabled'])
75  {
76    if ($conf['fbp']['allow_fb_access_private_page'])
77    {
78      global $user, $page;
79
80      // No restristion for facebook user
81      if (preg_match('/'.FBP_IP_FB. '/', $_SERVER["REMOTE_ADDR"]))
82      {
83        //Allow guest access
84        $conf['guest_access'] = true;
85        // No forbidden categorie
86        $user['forbidden_categories'] = '';
87        $user['level'] = max($conf['available_permission_levels']);
88        $page['rank_of'][$page['image_id']] = 0;
89        $page['items'] = array_flip($page['rank_of']);
90      }
91    }
92  }
93}
94
95if ($conf['fbp']['social_plugin_like_button']['enabled'] or $conf['fbp']['social_plugin_facepile']['enabled'])
96{
97  //~ add_event_handler('loc_begin_picture', 'fbp_loc_begin_picture');
98  add_event_handler('render_element_content', 'fbp_render_element_content', EVENT_HANDLER_PRIORITY_NEUTRAL+1 /*in order to have picture content*/, 2);
99  //~ add_event_handler('loc_end_picture', 'fbp_loc_end_picture');
100  add_event_handler('loc_end_section_init', 'ftp_loc_end_section_init');
101}
102
103?>
Note: See TracBrowser for help on using the repository browser.