1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
25 | |
---|
26 | function plugin_install() |
---|
27 | { |
---|
28 | global $conf; |
---|
29 | |
---|
30 | if (!isset($conf['Random_Header'])) |
---|
31 | { |
---|
32 | $q = ' |
---|
33 | INSERT INTO '.CONFIG_TABLE.' (param, value, comment) |
---|
34 | VALUES ("Random_Header","","Random header configuration") |
---|
35 | ;'; |
---|
36 | pwg_query($q); |
---|
37 | } |
---|
38 | |
---|
39 | // upgrade |
---|
40 | |
---|
41 | $x = file_get_contents( dirname(__FILE__).'/data.dat' ); |
---|
42 | |
---|
43 | if ($x!==false) { |
---|
44 | $query = ' |
---|
45 | UPDATE '.CONFIG_TABLE.' |
---|
46 | SET value = "'.addslashes($x).'" |
---|
47 | WHERE param = "Random_Header" |
---|
48 | ;'; |
---|
49 | if (pwg_query($query)) unlink( dirname(__FILE__).'/data.dat' ); |
---|
50 | |
---|
51 | } |
---|
52 | |
---|
53 | // end upgrade |
---|
54 | |
---|
55 | |
---|
56 | } |
---|
57 | |
---|
58 | function plugin_uninstall() |
---|
59 | { |
---|
60 | global $conf; |
---|
61 | if (isset($conf['Random_Header'])) |
---|
62 | { |
---|
63 | $q = ' |
---|
64 | DELETE FROM '.CONFIG_TABLE.' |
---|
65 | WHERE param="Random_Header" |
---|
66 | ;'; |
---|
67 | pwg_query($q); |
---|
68 | } |
---|
69 | } |
---|
70 | |
---|
71 | ?> |
---|