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

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

[Autosize][beta] compatibility with llbgo


File size: 1.4 KB
Line 
1<?php
2/*
3Plugin Name: AutoSize
4Version: 1.3.9.9
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*/
10if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
11if (!defined('AUTOSIZE_PATH')) 
12define(  'AUTOSIZE_PATH',   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' );
13//=================================================================================
14        $path = AUTOSIZE_PATH; 
15//============================================================================         
16 include($path."include/constants.php");           
17 include_once(AUTOSIZE_PATH.'autosize.inc.php');
18//==================================================================
19$autosize_controler = new autosize_controler();
20
21
22add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin')  );
23add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), 40 );
24
25add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script'),  EVENT_HANDLER_PRIORITY_NEUTRAL+20 ,  2); 
26
27 add_event_handler('loc_end_page_tail',array(&$autosize_controler, 'cl_autosize_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
28
29 add_event_handler('render_element_content',
30  array(&$autosize_controler, 'cl_autosize_script_3'),  EVENT_HANDLER_PRIORITY_NEUTRAL-1,  2  );
31
32
33 
34?>
Note: See TracBrowser for help on using the repository browser.