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 | if (!defined('PHPWG_ROOT_PATH')) |
---|
24 | { |
---|
25 | die('Hacking attempt!'); |
---|
26 | } |
---|
27 | if (!defined('MAIL_SUPERV_PATH')) define('MAIL_SUPERV_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
---|
28 | include_once (MAIL_SUPERV_PATH.'include/constants.php'); |
---|
29 | |
---|
30 | |
---|
31 | function plugin_install() |
---|
32 | { |
---|
33 | global $conf ; |
---|
34 | if ( !isset($conf['mail_superv']) ) |
---|
35 | { |
---|
36 | plugin_uninstall() ; |
---|
37 | $query = ' |
---|
38 | INSERT INTO '.CONFIG_TABLE.' (param, value, comment) |
---|
39 | VALUES ("mail_superv","off,off,off,off,off,on,127.0.0.1,on ,?? ,?? ","Parametres du plugin Mail superviseur") |
---|
40 | ;'; |
---|
41 | pwg_query($query); |
---|
42 | //================================================================== |
---|
43 | |
---|
44 | } |
---|
45 | |
---|
46 | } |
---|
47 | |
---|
48 | |
---|
49 | |
---|
50 | function plugin_uninstall() |
---|
51 | { |
---|
52 | |
---|
53 | $query = ' |
---|
54 | DELETE FROM '.CONFIG_TABLE.' |
---|
55 | WHERE param="mail_superv" |
---|
56 | ;'; |
---|
57 | pwg_query($query); |
---|
58 | $query = 'DROP TABLE IF EXISTS '.MAIL_BLACK_LISTE_TABLE.';'; |
---|
59 | pwg_query( $query ); |
---|
60 | $query = 'DROP TABLE IF EXISTS '.MAIL_SUPERV_TABLE.';'; |
---|
61 | pwg_query( $query); |
---|
62 | |
---|
63 | |
---|
64 | } |
---|
65 | |
---|
66 | function plugin_activate() |
---|
67 | { |
---|
68 | include_once (MAIL_SUPERV_PATH.'include/fonctions.php'); |
---|
69 | verif_base() ; |
---|
70 | } |
---|
71 | |
---|
72 | function plugin_deactivate() |
---|
73 | { |
---|
74 | |
---|
75 | } |
---|
76 | |
---|
77 | ?> |
---|