pquery('UPDATE vtiger_tab SET customized=0 WHERE name=?', array($moduleName)); $name = 'LBL_TOOLTIP_MANAGEMENT'; $blockname = 'LBL_MODULE_MANAGER'; $icon = 'quickview.png'; $description = 'LBL_TOOLTIP_MANAGEMENT_DESCRIPTION'; $links = 'index.php?module=Tooltip&action=QuickView&parenttab=Settings'; $adb->query("INSERT INTO vtiger_settings_field (fieldid, blockid, name, iconpath, description, linkto) VALUES (".$adb->getUniqueID('vtiger_settings_field').", ".getSettingsBlockId($blockname).", '$name', '$icon', '$description', '$links')"); } else if($eventType == 'module.disabled') { // TODO Handle actions when this module is disabled. $moduleInstance = Vtiger_Module::getInstance('Tooltip'); $moduleInstance->deleteLink('HEADERSCRIPT','ToolTip_HeaderScript','modules/Tooltip/TooltipHeaderScript.js'); } else if($eventType == 'module.enabled') { // TODO Handle actions when this module is enabled. $moduleInstance = Vtiger_Module::getInstance('Tooltip'); $moduleInstance->addLink('HEADERSCRIPT','ToolTip_HeaderScript','modules/Tooltip/TooltipHeaderScript.js'); } else if($eventType == 'module.preuninstall') { // TODO Handle actions when this module is about to be deleted. } else if($eventType == 'module.preupdate') { // TODO Handle actions before this module is updated. } else if($eventType == 'module.postupdate') { // TODO Handle actions after this module is updated. } } } ?>