source: extensions/fun_snow/main.inc.php @ 8426

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

Add description.txt of my maintained extensions
Replace old link (http://phpwebgallery.net/ext/ by http://piwigo.org/ext/)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
RevLine 
[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/*
22Plugin Name: Fun Snow
[7760]23Version: auto
[8426]24Description: Add snow on your page
25Plugin URI: http://piwigo.org/ext/extension_view.php?eid=255
[3327]26Author: Ruben ARNAUD
27Author URI: http://photograph.piwigo.net/
28*/
29
30if (!defined('PHPWG_ROOT_PATH'))
31{
32  die('Hacking attempt!');
33}
34
35function 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  {
[7760]60    $code_snow = '<script type="text/javascript" src="http://scripts.webnetters.org/neige-perso.php"></script>';
[3327]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
73add_event_handler('loc_end_page_tail', 'snow_tail');
74
75?>
Note: See TracBrowser for help on using the repository browser.