aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/AMenuManager/amm_aim.class.inc.php
blob: e100020d4595b5f0349e758f25c500ce7d475cc4 (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
40
<?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()
  {
    parent::init_events();
    add_event_handler('get_admin_plugin_menu_links', array(&$this, 'plugin_admin_menu') );
  }

} // amm_aim  class


?>