> ------------------------------------------------------------------------------ See main.inc.php for release information HGRAM_AIM : classe to manage plugin integration into plugin menu --------------------------------------------------------------------------- */ if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } include_once('hgram_root.class.inc.php'); class HGram_AIM extends HGram_root { public function __construct($prefixeTable, $filelocation) { parent::__construct($prefixeTable, $filelocation); } /* initialize events call for the plugin */ public function initEvents() { parent::initEvents(); add_event_handler('get_admin_plugin_menu_links', array(&$this, 'pluginAdminMenu') ); } /* --------------------------------------------------------------------------- Function needed for plugin activation --------------------------------------------------------------------------- */ } // HGram_AIM class ?>