1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Fun Snow - a Piwigo Plugin | |
---|
4 | // | Copyright (C) 2008-2009 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 | |
---|
21 | /* |
---|
22 | Plugin Name: Fun Snow |
---|
23 | Version: 2.0.c |
---|
24 | Description: Add snow on your page / Ajoute de la neige à ta page |
---|
25 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=255 |
---|
26 | Author: Ruben ARNAUD |
---|
27 | Author URI: http://photograph.piwigo.net/ |
---|
28 | */ |
---|
29 | |
---|
30 | if (!defined('PHPWG_ROOT_PATH')) |
---|
31 | { |
---|
32 | die('Hacking attempt!'); |
---|
33 | } |
---|
34 | |
---|
35 | function snow_tail() |
---|
36 | { |
---|
37 | global $template, $conf; |
---|
38 | |
---|
39 | $page_name = script_basename(); |
---|
40 | if (! isset($conf['fun_snow_pages'])) |
---|
41 | { |
---|
42 | $conf['fun_snow_pages'] = array |
---|
43 | ( |
---|
44 | 'admin' => false, |
---|
45 | 'comments' => true, |
---|
46 | 'identification' => true, |
---|
47 | 'index' => true, |
---|
48 | 'password' => true, |
---|
49 | 'picture' => true, |
---|
50 | 'popuphelp' => true, |
---|
51 | 'profile' => true, |
---|
52 | 'register' => true, |
---|
53 | 'search' => true, |
---|
54 | 'tags' => true, |
---|
55 | ); |
---|
56 | } |
---|
57 | |
---|
58 | if (isset($conf['fun_snow_pages'][$page_name]) and $conf['fun_snow_pages'][$page_name]) |
---|
59 | { |
---|
60 | $code_snow = '<script type="text/javascript" src="http://images.topflood.com/neige-perso.php"></script>'; |
---|
61 | |
---|
62 | if (method_exists($template, 'append')) |
---|
63 | { |
---|
64 | $template->append('footer_elements', $code_snow); |
---|
65 | } |
---|
66 | else |
---|
67 | { |
---|
68 | $template->assign_block_vars('footer_element', array('CONTENT' => $code_snow)); |
---|
69 | } |
---|
70 | } |
---|
71 | } |
---|
72 | |
---|
73 | add_event_handler('loc_end_page_tail', 'snow_tail'); |
---|
74 | |
---|
75 | ?> |
---|