dolibarr/htdocs/core/triggers
2024-04-29 13:32:47 +02:00
..
dolibarrtriggers.class.php code syntax core directory 2021-02-23 22:03:23 +01:00
interface_20_all_Logevents.class.php Fix warning 2023-08-15 00:29:14 +02:00
interface_20_modWorkflow_WorkflowManager.class.php Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 18.0 2024-04-29 13:32:47 +02:00
interface_50_modAgenda_ActionsAuto.class.php FIX Bad name for trigger in HRM module 2023-10-17 14:46:51 +02:00
interface_50_modBlockedlog_ActionsBlockedLog.class.php Update htdocs/core/triggers/interface_50_modBlockedlog_ActionsBlockedLog.class.php 2023-06-30 12:23:40 +02:00
interface_50_modEventOrganization_EventOrganization.class.php Fix date for tasks created during project creation 2021-09-24 02:10:42 +02:00
interface_50_modLdap_Ldapsynchro.class.php FIX missing load group members for ldap synchro (#26167) 2023-10-10 18:37:50 +02:00
interface_50_modMailmanspip_Mailmanspipsynchro.class.php Clean code 2021-03-15 00:01:55 +01:00
interface_50_modNotification_Notification.class.php use isModEnabled 2023-06-29 14:04:39 +02:00
interface_50_modTicket_TicketEmail.class.php Merge branch '18.0' into 18.0-ticket_code_review 2024-03-08 00:12:22 +01:00
interface_80_modStripe_Stripe.class.php replace ! empty by !empty 2022-08-31 22:14:20 +02:00
interface_90_modSociete_ContactRoles.class.php Removed a message non expected in a lot of cases 2023-04-24 15:33:14 +02:00
interface_95_modWebhook_WebhookTriggers.class.php Fix error message 2023-10-24 19:45:56 +02:00
interface_95_modZapier_ZapierTriggers.class.php Fix trans in comments 2022-10-12 15:29:30 +02: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.