source: extensions/Autosize/maintain.inc.php @ 17503

Last change on this file since 17503 was 17503, checked in by cljosse, 12 years ago

[extensions] Autosize fix compatibility with 2.4, update

File size: 4.1 KB
Line 
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('AUTOSIZE_PATH')) 
25define(
26  'AUTOSIZE_PATH', PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'
27);
28 
29function plugin_install()
30{
31 global $conf;
32  if (!isset($conf['cl_autosize'])){   
33  $q = '
34    INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
35    VALUES ("cl_autosize","","Parametres du plugin Autosize")
36  ;';
37  pwg_query($q);
38  }
39 
40 
41}
42
43
44
45function plugin_uninstall(){
46  global $conf;
47  if (isset($conf['cl_autosize']))
48  {
49    $q = '
50      DELETE FROM '.CONFIG_TABLE.'
51      WHERE param="cl_autosize"
52    ;';
53    pwg_query($q);
54    }
55         $query = 'DROP TABLE IF EXISTS  '.CL_AUTOSIZE_TABLE.';';
56    pwg_query( $query);
57 }
58
59 function plugin_deactivate(){
60 global $conf ;
61 if (isset($conf['cl_derivatives_sav']))  {   
62    $arr = @unserialize($conf['cl_derivatives_sav']);         
63      if(isset($arr['d'])){ 
64        $query = '
65                UPDATE '.CONFIG_TABLE.'
66                  SET value="'.addslashes(serialize($arr)).'"
67                WHERE param = "derivatives"
68                LIMIT 1';
69                          pwg_query($query);
70
71        $q = 'DELETE FROM '.CONFIG_TABLE.' WHERE param="cl_derivatives_sav"   ;';
72     pwg_query($q);
73       }
74    }     
75 }
76
77function plugin_activate(){
78 global $conf ;
79 if (isset($conf['derivatives']))  {   
80    $arr = @unserialize($conf['derivatives']); 
81     if(isset($arr['d'])){ 
82       if (!isset($conf['cl_derivatives_sav'])){   
83            $q = 'INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
84            VALUES ("cl_derivatives_sav","","derivatives save")
85            ;';
86            pwg_query($q);
87       
88            $query = '
89            UPDATE '.CONFIG_TABLE.'
90              SET value="'.addslashes(serialize($arr)).'"
91            WHERE param = "cl_derivatives_sav"
92            LIMIT 1';
93            pwg_query($query);       
94 
95            $arr = @unserialize($conf['derivatives']);
96            if(!isset($arr['d']['Autosize'])){   
97                  $arr['d']['SelMaxi']=ImageStdParams::get_custom(9,9); 
98                  $arr['d']['Autosize']=ImageStdParams::get_custom(10, 10); 
99                  $conf['derivatives']=serialize($arr);
100                  $arr = @unserialize($conf['derivatives']);       
101                  $query = '
102                      UPDATE '.CONFIG_TABLE.'
103                      SET value="'.addslashes(serialize($arr)).'"
104                      WHERE param = "derivatives"
105                      LIMIT 1';
106                  pwg_query($query);             
107            }   
108        }
109     }
110   }     
111 }
112
113?>
Note: See TracBrowser for help on using the repository browser.