dolibarr/htdocs/core/triggers
Jyhere 8064fe6ce9
Fix: shipping workflow values comparison may fail
Due to php internal float values (eg. 40.00000000000001 instead of 40), comparison may fail.
2025-02-18 11:58:19 +01:00
..
dolibarrtriggers.class.php Qual: Fix phan/phpstan notices in class files (part 4) (#31598) 2024-10-30 21:33:30 +01:00
interface_20_all_Logevents.class.php Add more info on audit event password renew 2024-11-07 13:52:40 +01:00
interface_20_modWorkflow_WorkflowManager.class.php Fix: shipping workflow values comparison may fail 2025-02-18 11:58:19 +01:00
interface_50_modAgenda_ActionsAuto.class.php Qual: fix phan notices in interface_50_modAgenda_ActionsAuto.class (#31478) 2024-10-24 01:32:10 +02:00
interface_50_modBlockedlog_ActionsBlockedLog.class.php NEW When we export data of unlaterable log, we add an unalterable line 2024-10-25 20:13:14 +02:00
interface_50_modEventOrganization_EventOrganization.class.php Fix phan 2024-09-10 02:22:12 +02:00
interface_50_modLdap_Ldapsynchro.class.php Qual: Fix Phan notices 2025-01-27 19:15:09 +01:00
interface_50_modMailmanspip_Mailmanspipsynchro.class.php Qual: Fix PhanPluginUnknownObjectMethodCall where is the only phan notice (#30957) 2024-09-16 01:49:38 +02:00
interface_50_modNotification_Notification.class.php Fix CI 2025-01-16 14:47:03 +01:00
interface_50_modTicket_TicketEmail.class.php Merge pull request #32816 from mdeweerd/qual/phan.2025.1.18-a 2025-01-28 23:58:35 +01:00
interface_80_modStripe_Stripe.class.php Qual: Fix phan/phpstan notices in class files (part 5) (#31617) 2024-11-06 20:15:15 +01:00
interface_90_modSociete_ContactRoles.class.php Qual: Fix PhanPluginUnknownObjectMethodCall where is the only phan notice (#30957) 2024-09-16 01:49:38 +02:00
interface_95_modWebhook_WebhookTriggers.class.php fix a warning in webhook trigger (#31850) 2024-11-15 16:44:57 +01:00
interface_95_modZapier_ZapierTriggers.class.php Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into develop 2024-12-17 16:59:13 +01:00
README
README-FR

Directory content
--------------------------------------------------------
This directory contains all available Dolibarr triggers.

Trigger file name syntax is:
> interface_modModule_Mytrigger.php[-NORUN]

where:
> modModule is part of module descriptor file name found in core/modules
            directory or value 'all' if not enabled by a particular module.
> Mytrigger is name of the trigger. The PHP class inside the trigger file
            would be named InterfaceMytrigger.
> -NORUN is optional and disable completely a trigger file if set. To use 
            a trigger with such a name, rename file to remove the -NORUN part.