source: extensions/GooglePlusOne/main.inc.php @ 19363

Last change on this file since 19363 was 19363, checked in by mistic100, 11 years ago

correct typo, load on footer

File size: 3.4 KB
Line 
1<?php
2/*
3Plugin Name: Google+1
4Version: auto
5Description: Add a "+1" Google button
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=562
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13define('GPLUS1_PATH' , PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/');
14
15load_language('plugin.lang', GPLUS1_PATH);
16add_event_handler('loc_end_picture', 'gplus1_add_button');
17add_event_handler('loc_end_index', 'gplus1_add_button');
18
19
20function gplus1_add_button() 
21{
22  global $conf, $template, $user;
23 
24  $conf['GooglePlusOne'] = unserialize($conf['GooglePlusOne']);
25  $conf['GooglePlusOne']['lang'] = array(
26    'ar','bg','ca','zh-CN','zh-TW','hr','cs','da','nl','en-US','en-GB','et','fi','fr','de',
27    'el','iw','hi','hu','id','it','ja','ko','lv','lt','ms','no','fa','pl','pt-BR','pt-PT',
28    'ro','ru','sr','sk','sl','es','sv','th','tr','uk','vi',
29    );
30 
31  // position for index
32  if (script_basename() == 'index')
33  {
34    $conf['GooglePlusOne']['position'] = 'index';
35  }
36 
37  // if the link is in the toolbar, we must use smallier buttons
38  if ( script_basename() == 'index' OR  $conf['GooglePlusOne']['position'] == 'toolbar')
39  {
40    if ($conf['GooglePlusOne']['size'] == 'tall' AND $conf['GooglePlusOne']['annotation'] == 'bubble')
41    {
42      $conf['GooglePlusOne']['size'] = 'standard';
43    }
44  }
45 
46  // config
47  $template->assign(array(
48    'GPLUS1_SIZE' => $conf['GooglePlusOne']['size'],
49    'GPLUS1_ANNO' => $conf['GooglePlusOne']['annotation'],
50    'GPLUS1_POSITON' => $conf['GooglePlusOne']['position'],
51  ));
52 
53  // button language
54  if ( in_array(str_replace('_','-',$user['language']), $conf['GooglePlusOne']['lang']) )
55  {
56    $template->assign('GPLUS1_LANG', str_replace('_','-',$user['language']));
57  }
58  if ( in_array(substr($user['language'],0,2), $conf['GooglePlusOne']['lang']) )
59  {
60    $template->assign('GPLUS1_LANG', substr($user['language'],0,2));
61  }
62  else
63  {
64    $template->assign('GPLUS1_LANG', 'en-GB');
65  }
66 
67 
68  $template->set_filename('gplus1_button', dirname(__FILE__).'/button.tpl');
69  $button = $template->parse('gplus1_button', true);
70 
71  switch ($conf['GooglePlusOne']['position'])
72  {
73    case 'index':
74      // $template->add_index_button('<li>'.$button.'</li>', 100);
75      $template->concat('PLUGIN_INDEX_ACTIONS', '<li>'.$button.'</li>');
76      break;
77    case 'toolbar':
78      // $template->add_picture_button($button, 100);
79      $template->concat('PLUGIN_PICTURE_ACTIONS', $button);
80      break;
81    default;
82      $template->assign('GPLUS1_BUTTON', $button);
83      $template->set_prefilter('picture', 'gplus1_add_button_prefilter');
84  }
85}
86
87function gplus1_add_button_prefilter($content, &$smarty)
88{
89  global $template;
90 
91  switch ($template->get_template_vars('GPLUS1_POSITION'))
92  {
93    case 'top':
94      $search = '<div id="theImage">';
95      $replace = '<div>{$GPLUS1_BUTTON}</div>';
96      break;
97     
98    case 'bottom':
99      $search = '{$ELEMENT_CONTENT}';
100      $replace = '{$GPLUS1_BUTTON}';
101      break;
102  }
103
104  return str_replace($search, $search.$replace, $content);
105}
106
107
108if (script_basename() == 'admin')
109{
110  add_event_handler('get_admin_plugin_menu_links', 'gplus1_plugin_admin_menu');
111
112  function gplus1_plugin_admin_menu($menu)
113  {
114    array_push($menu, array(
115      'NAME' => 'Google+1',
116      'URL' => get_root_url().'admin.php?page=plugin-'.basename(dirname(__FILE__))
117      ));
118    return $menu;
119  }
120}
121
122?>
Note: See TracBrowser for help on using the repository browser.