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