|
Revision 5545, 1.1 KB
(checked in by grum, 3 years ago)
|
|
Update the plugin for compatibility with Piwigo 2.1
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* ----------------------------------------------------------------------------- |
|---|
| 3 | Plugin : Advanced Menu Manager |
|---|
| 4 | Author : Grum |
|---|
| 5 | email : grum@grum.dnsalias.com |
|---|
| 6 | website : http://photos.grum.dnsalias.com |
|---|
| 7 | PWG user : http://forum.phpwebgallery.net/profile.php?id=3706 |
|---|
| 8 | |
|---|
| 9 | << May the Little SpaceFrog be with you ! >> |
|---|
| 10 | ------------------------------------------------------------------------------ |
|---|
| 11 | See main.inc.php for release information |
|---|
| 12 | |
|---|
| 13 | AMM_AIM : classe to manage plugin integration into plugin menu |
|---|
| 14 | |
|---|
| 15 | --------------------------------------------------------------------------- */ |
|---|
| 16 | |
|---|
| 17 | if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } |
|---|
| 18 | |
|---|
| 19 | include_once('amm_root.class.inc.php'); |
|---|
| 20 | |
|---|
| 21 | class AMM_AIM extends AMM_root |
|---|
| 22 | { |
|---|
| 23 | function AMM_AIM($prefixeTable, $filelocation) |
|---|
| 24 | { |
|---|
| 25 | parent::__construct($prefixeTable, $filelocation); |
|---|
| 26 | } |
|---|
| 27 | |
|---|
| 28 | /* |
|---|
| 29 | initialize events call for the plugin |
|---|
| 30 | */ |
|---|
| 31 | function initEvents() |
|---|
| 32 | { |
|---|
| 33 | parent::initEvents(); |
|---|
| 34 | add_event_handler('get_admin_plugin_menu_links', array(&$this, 'pluginAdminMenu') ); |
|---|
| 35 | } |
|---|
| 36 | |
|---|
| 37 | } // amm_aim class |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | ?> |
|---|