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

Last change on this file since 17680 was 17680, checked in by mistic100, 12 years ago

make $autosize_controler global for external usage

File size: 1.9 KB
Line 
1<?php
2/*
3Plugin Name: AutoSize
4Version: 2.06
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__)).'/' );
14if (!defined('ROOT_URL')) 
15define(  'ROOT_URL',  get_root_url().'/' );
16 
17if (!defined('AUTOSIZE_PATH_ABS')) 
18define(
19  'AUTOSIZE_PATH_ABS',  realpath(AUTOSIZE_PATH)."/"
20);
21
22
23
24
25//==================================================================
26        include(AUTOSIZE_PATH."include/constants.php");           
27        include_once(AUTOSIZE_PATH.'autosize.inc.php');
28//==================================================================
29global $page;
30if (!isset( $page['start'])) {
31 $page['start']=0;
32 }
33 
34global $autosize_controler;
35$autosize_controler = new autosize_controler();
36add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin')  );
37
38
39// init cl_autosize_script_1 cl_autosize_affiche
40
41
42add_event_handler('render_element_content',  array(&$autosize_controler,'init'),EVENT_HANDLER_PRIORITY_NEUTRAL,2  );
43
44//avant pamooramics
45add_event_handler('render_element_content', array(&$autosize_controler, 'autosize_calcContent'),40,2); 
46
47add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL   );
48
49add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script_1'),  EVENT_HANDLER_PRIORITY_NEUTRAL   );
50
51add_event_handler('loc_after_page_header',array(&$autosize_controler, 'cl_autosize_script_3'),  EVENT_HANDLER_PRIORITY_NEUTRAL  );
52
53add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), EVENT_HANDLER_PRIORITY_NEUTRAL +21    );
54
55
56
57?>
Note: See TracBrowser for help on using the repository browser.