> ------------------------------------------------------------------------------ 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 initEvents() { parent::initEvents(); add_event_handler('get_admin_plugin_menu_links', array(&$this, 'pluginAdminMenu') ); add_event_handler('loc_end_page_header', array(&$this, 'adminPanel')); } public function adminPanel() { global $template; $template->append('footer_elements', ""); } } // amm_aim class ?>