[3327] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | Fun Snow - a Piwigo Plugin | |
---|
[8425] | 4 | // | Copyright (C) 2008-2011 Ruben ARNAUD - rub@piwigo.org | |
---|
[3327] | 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 |
---|
[7760] | 23 | Version: auto |
---|
[8426] | 24 | Description: Add snow on your page |
---|
| 25 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=255 |
---|
[3327] | 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 | { |
---|
[12799] | 60 | $code_snow = '<script type="text/javascript" src="http://ddata.over-blog.com/xxxyyy/0/06/31/40/scripts/flocons/flocons.js"></script>'; |
---|
[3327] | 61 | |
---|
[12799] | 62 | $template->append('footer_elements', $code_snow); |
---|
[3327] | 63 | } |
---|
| 64 | } |
---|
| 65 | |
---|
| 66 | add_event_handler('loc_end_page_tail', 'snow_tail'); |
---|
| 67 | |
---|
| 68 | ?> |
---|