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

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

[Autosize][beta] compatibility with theme simple


File size: 1.4 KB
RevLine 
[6912]1<?php
2/*
3Plugin Name: AutoSize
[8093]4Version: 1.4.2.3
[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*/
10if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
11if (!defined('AUTOSIZE_PATH')) 
[7193]12define(  'AUTOSIZE_PATH',   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' );
[7886]13//=================================================================================
[8057]14               
15 include(AUTOSIZE_PATH."include/constants.php");           
[7912]16 include_once(AUTOSIZE_PATH.'autosize.inc.php');
[7886]17//==================================================================
[7673]18$autosize_controler = new autosize_controler();
[8070]19add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin')  );
[7673]20
[7963]21
[8070]22add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), EVENT_HANDLER_PRIORITY_NEUTRAL  );
23add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script'),  EVENT_HANDLER_PRIORITY_NEUTRAL  ,  2);   
[7872]24
[7805]25 add_event_handler('loc_end_page_tail',array(&$autosize_controler, 'cl_autosize_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
[7816]26 add_event_handler('render_element_content',
[8070]27 array(&$autosize_controler, 'cl_autosize_script_3'),  EVENT_HANDLER_PRIORITY_NEUTRAL-1,  2  );
[7872]28
[7542]29
[7805]30 
[6912]31?>
Note: See TracBrowser for help on using the repository browser.