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

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

[extensions] autosize compatibility with pamooramics & gmaps

File size: 1.3 KB
Line 
1<?php
2/*
3Plugin Name: AutoSize
4Version: auto
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
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12if (!defined('AUTOSIZE_PATH')) 
13define(  'AUTOSIZE_PATH',   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' );
14
15//==================================================================
16        include(AUTOSIZE_PATH."include/constants.php");           
17        include_once(AUTOSIZE_PATH.'autosize.inc.php');
18//==================================================================
19global $page;
20if (!isset( $page['start'])) {
21 $page['start']=0;
22 }
23$autosize_controler = new autosize_controler();
24add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin')  );
25
26add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script_1'),  EVENT_HANDLER_PRIORITY_NEUTRAL+20  ,  2);     
27add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), EVENT_HANDLER_PRIORITY_NEUTRAL+21  );
28
29add_event_handler('loc_end_page_tail',array(&$autosize_controler, 'cl_autosize_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
30?>
Note: See TracBrowser for help on using the repository browser.