source: extensions/Autosize/autosize.inc.php @ 11429

Last change on this file since 11429 was 11429, checked in by cljosse, 13 years ago

[extensions] Autosize fix bugs on height

File size: 16.7 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// | Autosize                                                              |
5// +-----------------------------------------------------------------------+
6// | Copyright(C) 2010      cljosse                                        |
7// +-----------------------------------------------------------------------+
8// | This program is free software; you can redistribute it and/or modify  |
9// | it under the terms of the GNU General Public License as published by  |
10// | the Free Software Foundation                                          |
11// |                                                                       |
12// | This program is distributed in the hope that it will be useful, but   |
13// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
14// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
15// | General Public License for more details.                              |
16// |                                                                       |
17// | You should have received a copy of the GNU General Public License     |
18// | along with this program; if not, write to the Free Software           |
19// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
20// | USA.                                                                  |
21// +-----------------------------------------------------------------------+
22if (!defined('AUTOSIZE_PATH')) 
23define(
24  'AUTOSIZE_PATH',
25   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'
26);
27if (!defined('ROOT_URL')) 
28define(  'ROOT_URL',  get_root_url().'/' );
29
30$AUTOSIZE_PATH_ABS=str_replace('\\','/',dirname(__FILE__) );
31if (!defined('AUTOSIZE_PATH_ABS')) 
32define(
33  'AUTOSIZE_PATH_ABS',   $AUTOSIZE_PATH_ABS."/"
34);
35
36
37class autosize_controler {
38 //============================================================
39 /*
40  *  cl_autosize_script_1
41 */
42 static public function cl_autosize_script_1()
43        {
44                global  $template,$user,$conf,$picture ,$page, $cl_plugin ;
45 
46  header ('X-UA-Compatible: n=7')  ;
47   header ('X-UA-Compatible: IE=Edge')  ;
48  if(isset($page['body_id']) && $page['body_id'] == 'theAdminPage' ) return ;
49
50    if ('kardon' == $user['theme'] and isset($_GET['slideshow'])) return ;
51     
52    $ma_page=isset($page['body_id'])?$page['body_id']:"" ;
53    if ($ma_page=='thePiwiShackControllerPage') return ;
54
55
56    if (PHPWG_VERSION < 2.2 ) 
57      $file =AUTOSIZE_PATH_ABS.'template/header_2_1.tpl' ;
58    else 
59      $file =AUTOSIZE_PATH_ABS.'template/header_2_2.tpl' ;
60   
61;
62
63    $template->set_filenames(array('autosize_init_header'=> $file ));
64    $template->set_filenames(array('autosize_init'=>AUTOSIZE_PATH_ABS. "template/conflit.tpl" ) );
65//=================================================================================================
66$DEBUG_autosize = isset($_POST['cl_debug_conflit']) ? $_POST['cl_debug_conflit'] : "false" ;
67$DEBUG_autosize = isset($_GET['cl_debug_conflit']) ? $_GET['cl_debug_conflit'] : $DEBUG_autosize ;
68$DEBUG_autosize = isset($conf['cl_debug_conflit']) ? $conf['cl_debug_conflit'] : $DEBUG_autosize ; 
69//=================================================================================================
70
71    $autosize_parametres =       cl_autosize_Get_Options() ;                   
72    $theme=$user['theme'];
73    $template->assign(
74      array(   
75        'autosize_parametres' => $autosize_parametres ,
76        'cl_plugins' => $cl_plugin ,
77        'cl_version' => $cl_plugin['version'] ,
78        'name' => $cl_plugin['name'] ,
79        'pamoorama' =>  isset($PAMOORAMICS_PATH)?"true":"false",                                                                 
80        'theme' => $theme  ,
81        'DEBUG_autosize' =>  $DEBUG_autosize ,
82        'AUTOSIZE_PATH' => str_replace("../","",AUTOSIZE_PATH)  ,
83        'AUTOSIZE_PATH_ABS' => AUTOSIZE_PATH_ABS,
84        'Version_pwg' => PHPWG_VERSION
85         )
86    );
87                $template->concat('cl_conflit_init', $template->parse('autosize_init_header', true));
88                return $template->parse( 'autosize_init', false);
89        }// function cl_autosize_script_1
90 //===========================================================
91 /*
92  * cl_autosize_script_2(admin)
93 */
94 static public function cl_autosize_script_2()
95 {
96           global  $template,$user,$conf,$picture ,$page, $cl_plugin,$known_script ;
97   if ('kardon' == $user['theme'] and isset($_GET['slideshow'])) return ;
98
99                        $AUTOSIZE_PATH = dirname(__FILE__).'/';
100//=================================================================================================
101$DEBUG_autosize = isset($_POST['cl_debug_conflit']) ? $_POST['cl_debug_conflit'] : "false" ;
102$DEBUG_autosize = isset($_GET['cl_debug_conflit']) ? $_GET['cl_debug_conflit'] : $DEBUG_autosize ;
103$DEBUG_autosize = isset($conf['cl_debug_conflit']) ? $conf['cl_debug_conflit'] : $DEBUG_autosize ; 
104//=================================================================================================
105
106
107                        $ma_page=isset($page['body_id'])?$page['body_id']:"" ;
108                        $theme=$user['theme'];
109                        if ($ma_page=='thePiwiShackControllerPage') return ;
110                       
111                        $template->assign(
112                                        array(
113                                        'cl_version' => $cl_plugin['version'] ,
114                                        'name' => $cl_plugin['name'] ,
115                                        'ma_page' =>    $ma_page,
116                                       
117                                        'theme' => $theme  ,
118                                        'DEBUG_autosize' => $DEBUG_autosize   ,
119                                        'AUTOSIZE_PATH' => AUTOSIZE_PATH
120                                        )
121                                                );
122                                                 
123                        $autoscript="<script type='text/javascript'>
124                        /* cl_autosize_script_2 */
125                        if (typeof (save_framework) == 'function')
126                           save_framework('".$ma_page."');
127                        </script>";
128         
129            $autoscript .="<input id='ret_autosize'  type='hidden' value='' />";
130            $autoscript .="<input id='src_img_h'  type='hidden' value='' />";
131            $autoscript .="<input id='src_img_w'   type='hidden' value='' />";
132            $autoscript .="<input id='window_height'  type='hidden' value='' />";
133            $autoscript .="<input id='window_width'   type='hidden' value='' />";
134             $autoscript .='<div id="Debug6"  align=center style="display:none"></div>';
135                $template->append('footer_elements',$autoscript); 
136                return ; 
137 }// function cl_autosize_script_2
138
139        //================================================================
140        /*
141        * cl_autosize_admin
142        */
143        static public function cl_autosize_admin($menu)
144                {
145                global  $lang ;
146                array_push($menu, array('NAME' => 'Autosize',
147                'URL' => get_admin_plugin_menu_link(AUTOSIZE_PATH . 'admin/admin_autosize.php')));
148                return $menu;
149        } //function cl_autosize_admin
150
151    //===============================================================
152        /*
153        *
154        */     
155        static public function cl_autosize_affiche()
156        {
157                global $user, $picture, $template,$page,$known_script;
158                global $content, $element_info;   
159                global $infos_message,$erreur_message;
160                global  $conf,$lang ,$user,$userdata;
161 if ('kardon' == $user['theme'] and isset($_GET['slideshow'])) return ;
162                load_language('plugin.lang', AUTOSIZE_PATH);
163                $AUTOSIZE_PATH = dirname(__FILE__).'/';
164                 if (isset( $page['body_id']) && $page['body_id']=='thePicturePage'  ) {
165                        if ( isset($picture['current'])){       
166                                $autosize_parametres = cl_autosize_Get_Options();
167                                include (AUTOSIZE_PATH."include/affiche.php"); 
168
169       if (PHPWG_VERSION < 2.2 ) 
170                $file =AUTOSIZE_PATH_ABS.'template/picture_2_1.tpl' ;
171        else 
172                $file =AUTOSIZE_PATH_ABS.'template/picture_2_2.tpl' ;
173
174
175
176        $template->set_filenames(array('autosize_content_header'=> $file )); 
177        $template->concat('autosize_content', $template->parse('autosize_content_header', true));   
178                       
179        $template->set_filenames(array('autosize_init_header'=> $file ));
180                                       
181                                if($autosize_parametres->check_icon_v == 'on'){                         
182                                                $template->assign('cl_autosize_button', 
183                                                array(  'cl_autosize_info' => 'cl_autosize_info' ,
184                                                                    'cl_autosize_info_2' => 'cl_autosize_info_2' ,   
185                                                                    'URL' => $_SERVER['REQUEST_URI'] ,
186                                                                    'ICON2' => AUTOSIZE_PATH . 'icons/button-maximize.png',
187                                                                    'ICON' => AUTOSIZE_PATH . 'icons/button-minimize.png'
188                                                                )
189
190                                                        ); 
191                                        $template->set_filenames(array('cl_bp' => $AUTOSIZE_PATH. 'template/picture.tpl'));
192                                        $template->concat('PLUGIN_PICTURE_ACTIONS', $template->parse('cl_bp', true));
193                                }
194                                 $template->set_filenames(
195                                                array('autosize_content'=> $AUTOSIZE_PATH.'template/autosize.tpl')
196                                        );
197                        $template->concat('autosize_content', $template->parse('autosize_content_header', true));                                                                               
198                                return $template->parse( 'autosize_content', false);
199                                  }
200                }
201
202        } //public function cl_autosize_affiche
203        //===============================================================
204                /*
205        *
206        */
207        static public function cl_autosize_aff_infos_plus()
208                {
209                 global $template,$infos_message,$erreur_message, $user ;
210                 global  $conf,$lang ;
211       
212                 //==============================================================
213                  if (isset($erreur_message))
214                                {       
215                                if ($erreur_message <> "")
216                                        {
217                                                $erreur_message=str_replace("\n",'<br />',$erreur_message) ;
218                                                $template->assign('errors',$erreur_message);
219                                                $erreur_message="";
220                                        }
221                                }
222                  if (isset($infos_message))
223                                {       
224               
225                                if ($infos_message <> "")
226                                        {
227                                                $infos_message=str_replace("\n",'<br />',$infos_message) ;
228                                                $template->assign('infos',$infos_message);
229                                                $infos_message="";
230                                        }
231                                }
232                                //=============================================================
233                return;         
234               
235                } // function cl_autosize_aff_infos_plus
236        //===============================================================
237        /*
238         *
239        */
240        static public function cl_ajuste_data($content){
241                global  $template,$user,$conf,$picture ;
242                $AUTOSIZE_PATH = realpath(AUTOSIZE_PATH .'/');
243                $userdata=$user;
244                $fields = array( 'maxwidth', 'maxheight' );
245         
246                $ThePicture = $template->get_template_vars('current'); 
247                $data = array();
248         return $content;
249
250                $data['maxwidth'] = '1200';
251                $data['maxheight'] ='250';
252                $data['user_id'] = $userdata['id'];
253                foreach ($fields as $field)
254                {
255                        if (isset($_POST[$field]))
256                        {
257                                $data[$field] = $_POST[$field];
258                        }
259                }
260       
261                if($data['maxwidth'] != "" )
262                        {
263                        $picture['current']['scaled_width']=$data['maxwidth'];
264                        $picture['current']['scaled_height']=$data['maxheight'];
265                        mass_updates(USER_INFOS_TABLE,
266                                        array('primary' => array('user_id'), 'update' => $fields),
267                                        array($data)); 
268                        }
269                 
270                        return $content;                                                                                 
271                 }
272
273} // class
274
275
276        /*
277        *
278        */
279 function cl_autosize_Get_Options()
280  {
281                global $conf,$autosize_parametres; 
282                $autosize_parametres =  unserialize($conf['cl_autosize']);
283                $autosize_parametres =  cl_autosize_Set_Options();
284                return $autosize_parametres;
285  }
286        /*
287        *
288        */
289function cl_autosize_Set_Options()
290  {
291
292  global $autosize_parametres;
293//=============================================================================
294$my_para=$autosize_parametres;
295
296$my_para->query =(isset($_POST['query'])) ? $_POST['query'] : ((isset($my_para->query )) ? $my_para->query : 'Qt' ) ;
297$my_para->type=(isset($_POST['type']))? $_POST['type']: ((isset($my_para->type)) ? $my_para->type:  'Ty') ;
298
299$my_para->webmaster_height =(isset($_POST['webmaster_height'])) ? $_POST['webmaster_height'] : ((isset($my_para->webmaster_height )) ? $my_para->webmaster_height : '100%' ) ;
300$my_para->webmaster_width=(isset($_POST['webmaster_width']))? $_POST['webmaster_width']: ((isset($my_para->webmaster_width)) ? $my_para->webmaster_width:  '100%') ;
301
302$my_para->admin_height =(isset($_POST['admin_height'])) ? $_POST['admin_height'] : ((isset($my_para->admin_height )) ? $my_para->admin_height : '100%' ) ;
303$my_para->admin_width=(isset($_POST['admin_width']))? $_POST['admin_width']: ((isset($my_para->admin_width)) ? $my_para->admin_width:  '100%') ;
304
305$my_para->generic_height =(isset($_POST['generic_height'])) ? $_POST['generic_height'] : ((isset($my_para->generic_height )) ? $my_para->generic_height : '100%' ) ;
306$my_para->generic_width=(isset($_POST['generic_width']))? $_POST['generic_width']: ((isset($my_para->generic_width)) ? $my_para->generic_width:  '100%') ;
307
308$my_para->guest_height =(isset($_POST['guest_height'])) ? $_POST['guest_height'] : ((isset($my_para->guest_height )) ? $my_para->guest_height : '100%' ) ;
309$my_para->guest_width=(isset($_POST['guest_width']))? $_POST['guest_width']: ((isset($my_para->guest_width)) ? $my_para->guest_width:  '100%') ;
310
311$my_para->normal_height =(isset($_POST['normal_height'])) ? $_POST['normal_height'] : ((isset($my_para->normal_height )) ? $my_para->normal_height : '100%' ) ;
312$my_para->normal_width=(isset($_POST['normal_width']))? $_POST['normal_width']: ((isset($my_para->normal_width)) ? $my_para->normal_width:  '100%') ;
313
314
315$my_para->mini_height =(isset($_POST['mini_height'])) ? $_POST['mini_height'] : ((isset($my_para->mini_height )) ? $my_para->mini_height : '150' ) ;
316$my_para->mini_width=(isset($_POST['mini_width']))? $_POST['mini_width']: ((isset($my_para->mini_width)) ? $my_para->mini_width:  '300') ;
317
318$my_para->mini_height2 =(isset($_POST['mini_height2'])) ? $_POST['mini_height2'] : ((isset($my_para->mini_height2 )) ? $my_para->mini_height2 : '150' ) ;
319$my_para->mini_width2=(isset($_POST['mini_width2']))? $_POST['mini_width2']: ((isset($my_para->mini_width2)) ? $my_para->mini_width2:  '300') ;
320
321$my_para->echelle_max=(isset($_POST['echelle_max']))? $_POST['echelle_max'] : ((isset($my_para->echelle_max)) ? $my_para->echelle_max :  '1.0'); 
322$my_para->marge_basse=(isset($_POST['marge_basse']))? $_POST['marge_basse']: ((isset($my_para->marge_basse)) ? $my_para->marge_basse :  '0');
323$my_para->fade_in=(isset($_POST['fade_in']))? $_POST['fade_in']: ((isset($my_para->fade_in)) ? $my_para->fade_in :  '0');
324
325//===============================================================================       
326
327if ( isset($_POST['submit'] ) && $_POST['submit'] == l10n('cl_autosize_save') )  { 
328                $my_para->check_desc_v = isset($_POST['check_desc_v']) ? $_POST['check_desc_v'] : "off" ;
329                $my_para->check_icon_v = isset($_POST['check_icon_v']) ? $_POST['check_icon_v'] : "off" ;
330                $my_para->check_auto_w = isset($_POST['check_auto_w']) ? $_POST['check_auto_w'] : "off" ;
331
332                $my_para->webmaster_enabled = isset($_POST['webmaster_enabled']) ? $_POST['webmaster_enabled'] : "off" ;
333                $my_para->admin_enabled = isset($_POST['admin_enabled']) ? $_POST['admin_enabled'] : "off" ;
334                $my_para->generic_enabled = isset($_POST['generic_enabled']) ? $_POST['generic_enabled'] : "off" ;
335                $my_para->guest_enabled = isset($_POST['guest_enabled']) ? $_POST['guest_enabled'] : "off" ;
336                $my_para->normal_enabled = isset($_POST['normal_enabled']) ? $_POST['normal_enabled'] : "off" ;
337
338         }else{
339                $my_para->check_desc_v = isset($_POST['check_desc_v']) ? $_POST['check_desc_v'] : ( ( isset($my_para->check_desc_v) ) ? $my_para->check_desc_v :   'off') ; 
340                $my_para->check_icon_v = isset($_POST['check_icon_v']) ? $_POST['check_icon_v'] : ( ( isset($my_para->check_icon_v) ) ? $my_para->check_icon_v :   'off') ; 
341                $my_para->check_auto_w = isset($_POST['check_auto_w']) ? $_POST['check_auto_w'] : ( ( isset($my_para->check_auto_w) ) ? $my_para->check_auto_w :   'off') ; 
342
343
344$my_para->webmaster_enabled = isset($_POST['webmaster_enabled']) ? $_POST['webmaster_enabled'] : ( ( isset($my_para->webmaster_enabled) ) ? $my_para->webmaster_enabled :   'on') ; 
345$my_para->admin_enabled  = isset($_POST['admin_enabled ']) ? $_POST['admin_enabled '] : ( ( isset($my_para->admin_enabled ) ) ? $my_para->admin_enabled :   'on') ; 
346$my_para->generic_enabled = isset($_POST['generic_enabled']) ? $_POST['generic_enabled'] : ( ( isset($my_para->generic_enabled) ) ? $my_para->generic_enabled :   'on') ; 
347$my_para->guest_enabled = isset($_POST['guest_enabled']) ? $_POST['guest_enabled'] : ( ( isset($my_para->guest_enabled) ) ? $my_para->guest_enabled :   'on') ;
348$my_para->normal_enabled = isset($_POST['normal_enabled']) ? $_POST['normal_enabled'] : ( ( isset($my_para->normal_enabled) ) ? $my_para->normal_enabled :   'on') ; 
349
350
351   }
352
353return $my_para;
354}
355        /*
356        *
357        */
358function cl_autosize_sauve_options_inf()
359{
360global $options,$infos_message,$conf,$autosize_parametres  ;
361$infos_message .=l10n("cl_autosize_save_config")."<br>";
362 $autosize_parametres=cl_autosize_Set_Options();
363
364 if ( isset($autosize_parametres) )
365        {
366 
367                $query = '
368                UPDATE '.CONFIG_TABLE.'
369                SET value="'.addslashes(serialize($autosize_parametres)).'"
370                WHERE param = "cl_autosize"
371                LIMIT 1';
372                        pwg_query($query);
373          }
374         
375 }
376
377 function auto_memo_var($variables)
378{
379  ob_start();
380  echo '<pre>';
381  print_r($variables);
382  echo '</pre>';
383  $m= ob_get_contents();
384  ob_end_clean();
385  return $m;           
386}
387   
388
389?>
Note: See TracBrowser for help on using the repository browser.