Last change
on this file since 13107 was
8958,
checked in by cljosse, 14 years ago
|
[cl_conflit] bug on compatibility with piwigo 2.2
|
File size:
1.1 KB
|
Rev | Line | |
---|
[7880] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Plugin Name: cl_conflit |
---|
[8958] | 4 | Version: 1.1.1 |
---|
[7882] | 5 | Description: gestion des conflits entre jQuery et les autres librairies |
---|
| 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=474 |
---|
[7880] | 7 | Author: cljosse |
---|
| 8 | Author URI:http://cljosse.free.fr |
---|
| 9 | */ |
---|
[7882] | 10 | |
---|
[7880] | 11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 12 | if (!defined('CONFLIT_PATH')) |
---|
| 13 | define( 'CONFLIT_PATH', PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' ); |
---|
[8629] | 14 | //================================================================== |
---|
| 15 | include_once (CONFLIT_PATH."include/constants.php"); |
---|
| 16 | include_once(CONFLIT_PATH.'conflit.inc.php'); |
---|
| 17 | //================================================================== |
---|
[7895] | 18 | $conflit_controler = new conflit_controler(); |
---|
[7905] | 19 | add_event_handler('get_admin_plugin_menu_links', array(&$conflit_controler,'cl_conflit_admin') ); |
---|
[7880] | 20 | |
---|
[8629] | 21 | |
---|
| 22 | |
---|
| 23 | add_event_handler('loc_after_page_header', array(&$conflit_controler, 'cl_conflit_script_1'), EVENT_HANDLER_PRIORITY_NEUTRAL+20 , 2); |
---|
[7880] | 24 | add_event_handler('loc_end_page_tail',array(&$conflit_controler, 'cl_conflit_script_2'), EVENT_HANDLER_PRIORITY_NEUTRAL ); |
---|
| 25 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.