dolibarr/htdocs/core/triggers
Frédéric FRANCE 8ef2167f91
phpstan
2023-08-27 09:40:55 +02:00
..
dolibarrtriggers.class.php
interface_20_all_Logevents.class.php Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into develop 2023-08-15 00:31:51 +02:00
interface_20_modWorkflow_WorkflowManager.class.php phpstan 2023-08-27 09:40:55 +02:00
interface_50_modAgenda_ActionsAuto.class.php NEW Perf avoid 2 useless fetch into the triggers of agenda. 2023-08-16 17:57:41 +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
interface_50_modLdap_Ldapsynchro.class.php Clean code 2023-08-05 14:59:31 +02:00
interface_50_modMailmanspip_Mailmanspipsynchro.class.php
interface_50_modNotification_Notification.class.php Fix warning 2023-07-31 03:52:05 +02:00
interface_50_modTicket_TicketEmail.class.php Fixing style errors. 2023-04-05 15:33:46 +00:00
interface_80_modStripe_Stripe.class.php
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
interface_95_modZapier_ZapierTriggers.class.php
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.