source: extensions/cl_conflit/main.inc.php @ 8300

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

[cl_conflit] cleanup

File size: 1.2 KB
RevLine 
[7880]1<?php
2/*
3Plugin Name: cl_conflit
[7945]4Version: 1.0.5
[7882]5Description: gestion des conflits entre jQuery et les autres librairies
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=474
[7880]7Author: cljosse
8Author URI:http://cljosse.free.fr
9*/
[7882]10
[7880]11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12if (!defined('CONFLIT_PATH')) 
13define(  'CONFLIT_PATH',   PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' );
[7895]14 
15        $path = CONFLIT_PATH;   
16         
17//============================================================================         
[7905]18  include ($path."include/constants.php");         
[7895]19//============================================================================
20include_once(CONFLIT_PATH.'conflit.inc.php');   
[7905]21
[7895]22$conflit_controler = new conflit_controler();
[7905]23add_event_handler('get_admin_plugin_menu_links', array(&$conflit_controler,'cl_conflit_admin')  );
[7880]24
25add_event_handler('loc_after_page_header', array(&$conflit_controler, 'cl_conflit_script'),  EVENT_HANDLER_PRIORITY_NEUTRAL+20 ,  2);
26add_event_handler('loc_end_page_tail',array(&$conflit_controler, 'cl_conflit_script_2'),  EVENT_HANDLER_PRIORITY_NEUTRAL );
27add_event_handler('render_element_content',array(&$conflit_controler, 'cl_conflit_script_3'),  EVENT_HANDLER_PRIORITY_NEUTRAL-1,  2  );
28 
29
30?>
Note: See TracBrowser for help on using the repository browser.