Ignore:
Timestamp:
Jan 12, 2011, 3:22:40 PM (14 years ago)
Author:
cljosse
Message:

[Autosize][beta] compatibility whith piwishack


File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Autosize/main.inc.php

    r8536 r8627  
    22/*
    33Plugin Name: AutoSize
    4 Version: 1.4.2.5
     4Version: 1.4.2.6
    55Description: Ajuste l'affichage des photos en fonction de la hauteur de la fenetre de navigation
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=448
     
    88Author URI:http://cljosse.free.fr
    99*/
     10
    1011if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    1112if (!defined('AUTOSIZE_PATH'))
    1213define(  'AUTOSIZE_PATH',   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' );
    13 //=================================================================================
    14                
    15  include(AUTOSIZE_PATH."include/constants.php");           
    16  include_once(AUTOSIZE_PATH.'autosize.inc.php');
     14//==================================================================
     15        include(AUTOSIZE_PATH."include/constants.php");           
     16        include_once(AUTOSIZE_PATH.'autosize.inc.php');
    1717//==================================================================
    1818$autosize_controler = new autosize_controler();
    1919add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin')  );
    2020
     21add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), EVENT_HANDLER_PRIORITY_NEUTRAL  );
    2122
    22 add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), EVENT_HANDLER_PRIORITY_NEUTRAL  );
    23 add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script'),  EVENT_HANDLER_PRIORITY_NEUTRAL  ,  2);   
    24 
    25  add_event_handler('loc_end_page_tail',array(&$autosize_controler, 'cl_autosize_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
    26  add_event_handler('render_element_content',
    27  array(&$autosize_controler, 'cl_autosize_script_3'),  EVENT_HANDLER_PRIORITY_NEUTRAL-1,  2  );
    28 
    29 
    30  
     23add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script_1'),  EVENT_HANDLER_PRIORITY_NEUTRAL+20  ,  2);     
     24add_event_handler('loc_end_page_tail',array(&$autosize_controler, 'cl_autosize_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
    3125?>
Note: See TracChangeset for help on using the changeset viewer.