1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: AutoSize |
---|
4 | Version: auto |
---|
5 | Description: Ajuste l'affichage des photos en fonction de la hauteur de la fenetre de navigation |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=448 |
---|
7 | Author: cljosse |
---|
8 | Author URI:http://cljosse.free.fr |
---|
9 | */ |
---|
10 | |
---|
11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
12 | if (!defined('AUTOSIZE_PATH')) |
---|
13 | define( 'AUTOSIZE_PATH', PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' ); |
---|
14 | if (!defined('ROOT_URL')) |
---|
15 | define( 'ROOT_URL', get_root_url().'/' ); |
---|
16 | |
---|
17 | if (!defined('AUTOSIZE_PATH_ABS')) |
---|
18 | define( |
---|
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 | //================================================================== |
---|
29 | global $page; |
---|
30 | if (!isset( $page['start'])) { |
---|
31 | $page['start']=0; |
---|
32 | } |
---|
33 | $autosize_controler = new autosize_controler(); |
---|
34 | add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin') ); |
---|
35 | |
---|
36 | add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_script_1'), EVENT_HANDLER_PRIORITY_NEUTRAL+20 ); |
---|
37 | add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), EVENT_HANDLER_PRIORITY_NEUTRAL+21 ); |
---|
38 | |
---|
39 | add_event_handler('loc_end_page_tail',array(&$autosize_controler, 'cl_autosize_script_2'), EVENT_HANDLER_PRIORITY_NEUTRAL ); |
---|
40 | ?> |
---|