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

Last change on this file since 7394 was 7394, checked in by cljosse, 14 years ago

[Autosize][beta] Add the option validation of the autosize according to the status

File size: 994 bytes
Line 
1<?php
2/*
3Plugin Name: AutoSize
4Version: 1.2.7
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__)).'/' );
14include_once(AUTOSIZE_PATH.'autosize.inc.php');
15$autosize_controler = new autosize_controler();
16
17add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), 45 );
18//---- avant pamooramics ---
19//add_event_handler('render_element_content', array(&$autosize_controler, 'cl_autosize_aff_infos_plus'),40,2);
20
21add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin')  );
22add_event_handler('load_profile_in_template', array(&$autosize_controler,'cl_autosize_script'),40 );
23
24?>
Note: See TracBrowser for help on using the repository browser.