/
var
/
www
/
html
/
sugardemo
/
Ext
/
LogicHooks
/
Upload File
HOME
<?php if (!defined('sugarEntry') || !sugarEntry) { die('Not A Valid Entry Point'); } /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ // Full text search. $pmseHookClassPath = SugarAutoLoader::requireWithCustom('modules/pmse_Inbox/engine/PMSELogicHook.php'); $pmseHookClassName = SugarAutoLoader::customClass('PMSELogicHook'); $hook_array['after_save'][] = [ 100, 'pmse', $pmseHookClassPath, $pmseHookClassName, 'after_save', ]; $hook_array['after_delete'][] = [ 100, 'pmse', $pmseHookClassPath, $pmseHookClassName, 'after_delete', ]; $hook_array['after_relationship_add'][] = [ 100, 'pmse', $pmseHookClassPath, $pmseHookClassName, 'after_relationship', ]; $hook_array['after_relationship_delete'][] = [ 100, 'pmse', $pmseHookClassPath, $pmseHookClassName, 'after_relationship', ]; //remove unnecessary globals unset($pmseHookClassPath); unset($pmseHookClassName);