I need to add a global logic hook
This can be done by editing custom/module/logic_hooks.php
But if I upgrade suiteCRM then this could be overwritten
Is there a way of doing this in an upgrade safe way?
I need to add a global logic hook
This can be done by editing custom/module/logic_hooks.php
But if I upgrade suiteCRM then this could be overwritten
Is there a way of doing this in an upgrade safe way?
For module specific:
/custom/Extension/modules/ModuleName/Ext/LogicHooks/anyFileName.php
For one that runs on all modules:
/custom/Extension/application/Ext/LogicHooks/anyFileName.php
Thats perfect thanks