source: extensions/Autosize/main.inc.php @ 18823

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

[extensions] Autosize fix compatibility with 2.4 (compatible gvideo)

File size: 2.7 KB
Line 
1<?php
2/*
3Plugin Name: AutoSize
4Version: 2.11.1
5Description: Ajuste l'affichage des photos en fonction de la hauteur de la fenetre de navigation
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=448
7Author: cljosse
8Author URI:http://cljosse.free.fr
9*/ 
10/*****************************************
11*Ajouter .contentWithMenu{ margin-left:0 } dans themes montblanc
12*
13*****************************************/
14if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
15if (!defined('AUTOSIZE_PATH')) 
16define(  'AUTOSIZE_PATH',   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' );
17if (!defined('ROOT_URL')) 
18define(  'ROOT_URL',  get_root_url().'/' );
19 
20if (!defined('AUTOSIZE_PATH_ABS')) 
21define(
22  'AUTOSIZE_PATH_ABS',  realpath(AUTOSIZE_PATH)."/"
23);
24
25if (isset($_GET['cl_debug']) && $_GET['cl_debug']=="NO"){
26
27}else{
28//==================================================================
29        include(AUTOSIZE_PATH."include/constants.php");           
30        include_once(AUTOSIZE_PATH.'autosize.inc.php');
31//==================================================================
32global $page,$autosize_ctrl;
33if (!isset( $page['start'])) {
34 $page['start']=0;
35 }
36$autosize_ctrl = new autosize_ctrl();
37add_event_handler('get_admin_plugin_menu_links', array(&$autosize_ctrl,'cl_autosize_admin')  );
38
39  if( isset($_GET['cl_debug']) && $_GET['cl_debug'] =='false') {
40      $DEBUG_autosize="";
41  }else{
42    $DEBUG_autosize = isset($_POST['cl_debug']) ? $_POST['cl_debug'] : "" ;
43    $DEBUG_autosize = isset($_GET['cl_debug']) ? $_GET['cl_debug'] :  $DEBUG_autosize ;
44    $DEBUG_autosize = isset($conf['cl_debug']) ? $conf['cl_debug']."," . $DEBUG_autosize : $DEBUG_autosize ;
45 //===============================================================
46}
47if(!preg_match("|NO|", $DEBUG_autosize, $val)) { 
48
49// init cl_autosize_script_1 cl_autosize_affiche
50//Important avant pamooramics, gvideo
51
52add_event_handler('render_element_content', array(&$autosize_ctrl, 'autosize_calcContent'),EVENT_HANDLER_PRIORITY_NEUTRAL-11,2); 
53
54/**/
55add_event_handler('render_element_content',  array(&$autosize_ctrl,'init'),EVENT_HANDLER_PRIORITY_NEUTRAL-1,2  );
56add_event_handler('render_element_content',  array(&$autosize_ctrl,'init2'),EVENT_HANDLER_PRIORITY_NEUTRAL+1,2  );
57add_event_handler('loc_after_page_header', array(&$autosize_ctrl, 'cl_autosize_script_1') );
58add_event_handler('loc_after_page_header', array(&$autosize_ctrl, 'cl_autosize_script_2')  );
59add_event_handler('loc_after_page_header',array(&$autosize_ctrl, 'cl_autosize_script_3')  );
60add_event_handler('loc_after_page_header', array(&$autosize_ctrl, 'cl_autosize_affiche'), EVENT_HANDLER_PRIORITY_NEUTRAL +21    );
61}
62} ;
63
64
65
66
67?>
Note: See TracBrowser for help on using the repository browser.