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

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

[Autosize][beta] fix compatiblity with luciano()

File size: 1.5 KB
RevLine 
[6912]1<?php
2/*
3Plugin Name: AutoSize
[7821]4Version: 1.3.7.1
[6912]5Description: Ajuste l'affichage des photos en fonction de la hauteur de la fenetre de navigation
[6932]6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=448
[6912]7Author: cljosse
8Author URI:http://cljosse.free.fr
9*/
[7458]10/*| Ajoute l' option validation de l'autotaille en fonction du statut */
[6912]11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12if (!defined('AUTOSIZE_PATH')) 
[7193]13define(  'AUTOSIZE_PATH',   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' );
[7673]14include_once(AUTOSIZE_PATH.'autosize.inc.php');
15$autosize_controler = new autosize_controler();
16
[7805]17add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin')  );
18add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), 40 );
19add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script'),  EVENT_HANDLER_PRIORITY_NEUTRAL+20 ,  2); 
[7262]20
[7805]21 add_event_handler('loc_end_page_tail',array(&$autosize_controler, 'cl_autosize_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
[7394]22
[7816]23 add_event_handler('render_element_content',
24  array(&$autosize_controler, 'cl_autosize_script_3'),  EVENT_HANDLER_PRIORITY_NEUTRAL-1,  2  );
[7805]25 //add_event_handler('loc_end_index',array(&$autosize_controler, 'cl_autosize_script_3'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
26 
27//---- Categorie --gmapsMarkup.packed.js-
28// if (k[c]) { p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]) } }
29//    p = p.replace(new RegExp("\\$", "ig"), "jQuery"); return p }
[7542]30
[7805]31 
[6912]32?>
Note: See TracBrowser for help on using the repository browser.