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

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

[extensions] Autosize fix compatibility with 2.4, add option: SelMax / Autosize (default setting)

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