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

Last change on this file since 18936 was 18936, checked in by cljosse, 11 years ago

[extensions] Autosize fix compatibility with 2.4 (fix bug init, compatibility look_like_gbo2)

File size: 5.0 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  global $infos_message , $erreur_message ,$warnings_message ;
48
49  if (isset($conf['cl_autosize']))
50  {
51    $q = '
52      DELETE FROM '.CONFIG_TABLE.'
53      WHERE param="cl_autosize"
54    ;';
55    pwg_query($q);
56    }
57         $query = 'DROP TABLE IF EXISTS  '.CL_AUTOSIZE_TABLE.';';
58    pwg_query( $query);
59 }
60
61 function plugin_deactivate(){
62 global $conf ;
63 global $infos_message , $erreur_message ,$warnings_message ;
64   $arr = @unserialize($conf['derivatives']);
65        if(isset($arr['d']['Autosize'])){   
66                unset(  $arr['d']['SelMaxi']); 
67                unset(  $arr['d']['Autosize']); 
68                $conf['derivatives']=serialize($arr);
69                $arr = @unserialize($conf['derivatives']);       
70                  $query = '
71                      UPDATE '.CONFIG_TABLE.'
72                      SET value="'.addslashes(serialize($arr)).'"
73                      WHERE param = "derivatives"
74                      LIMIT 1';
75                  pwg_query($query);             
76            } 
77
78      if (isset($conf['cl_derivatives_sav']))  {   
79          $q = 'DELETE FROM '.CONFIG_TABLE.' WHERE param="cl_derivatives_sav"   ;';
80          pwg_query($q);
81         unset ( $conf['cl_derivatives_sav']);   
82      }   
83      $model= $conf['derivative_default_size'];
84      $_COOKIE  ['picture_deriv'] = $model; 
85      pwg_set_session_var('picture_deriv', $model);
86   
87 }
88
89function plugin_activate(){
90 global $conf ;
91 if (isset($conf['derivatives']))  {   
92    $arr = unserialize($conf['derivatives']); 
93     if(isset($arr['d'])){ 
94       if (!isset($conf['cl_derivatives_sav'])){   
95       $req = mysql_query('SELECT count(distinct(`param`)) FROM '.CONFIG_TABLE.'   WHERE `param` LIKE "'.'cl_derivatives_sav'.'"  ');
96            $op=mysql_fetch_row($req);       
97            if(count($op)==0){
98                $q = 'INSERT INTO '.CONFIG_TABLE.' (param, value, comment)
99                VALUES ("cl_derivatives_sav","","derivatives save")
100                ;';
101                @pwg_query($q);
102            }
103            $query = '
104            UPDATE '.CONFIG_TABLE.'
105              SET value="'.addslashes(serialize($arr)).'"
106            WHERE param = "cl_derivatives_sav"
107            LIMIT 1';
108            pwg_query($query);       
109 
110            $arr = @unserialize($conf['derivatives']);
111            if(!isset($arr['d']['Autosize'])){   
112                  $arr['d']['SelMaxi']=ImageStdParams::get_custom(9,9); 
113                  $arr['d']['Autosize']=ImageStdParams::get_custom(10, 10); 
114                  $conf['derivatives']=serialize($arr);
115                  $arr = @unserialize($conf['derivatives']);       
116                  $query = '
117                      UPDATE '.CONFIG_TABLE.'
118                      SET value="'.addslashes(serialize($arr)).'"
119                      WHERE param = "derivatives"
120                      LIMIT 1';
121                  pwg_query($query);             
122            }   
123        }
124     }
125   }     
126 }
127
128?>
Note: See TracBrowser for help on using the repository browser.