dolibarr/htdocs/core/triggers
MDW e570f59e2d
Qual: Phan fixes (mainly Initial type cannot be inferred) in popular changed classes (#30604)
* Update setValueFrom $id type to include null

* Only 2 arguments for ModeleNumRefMembers::getToolTip

* Fix PhanTypeConversionFromArray

* Only 6 args for PaymentSalary::addPaymentToBank

* Fix typing hints (array -> string)

* Fix uninitialized variables

* Add cssview to attributes phpdoc

* Avoid double typing specification (Phan notice)

* Qual: Ensure variable is defined (phan)

* Ensure phpdoc typing for verif method

* Ensure phpdoc typing for getNextValue method

* Add status as data key in cols array

* Ensure preg_replace operates on string (phan)

* Correct type for desiredstock

* Fix typing with casts (phan)

* Fix check that notification already exists

* Initialise fk_parent_id to fix typing issue

* Qual: Fix phan notices for Societe & related

* Qual: Fix typing for Facture and related

* Qual: Fix typing for Product & related

* Update baseline

* Fix new phpstan notices
2024-08-14 01:24:55 +02:00
..
dolibarrtriggers.class.php Fix restore declaration to avoid to many uncompatibility problems. 2024-03-18 15:15:35 +01:00
interface_20_all_Logevents.class.php Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into develop 2024-05-23 12:52:28 +02:00
interface_20_modWorkflow_WorkflowManager.class.php Qual: Phan fixes (mainly Initial type cannot be inferred) in popular changed classes (#30604) 2024-08-14 01:24:55 +02:00
interface_50_modAgenda_ActionsAuto.class.php NEW Add more log information 2024-07-29 12:16:41 +02:00
interface_50_modBlockedlog_ActionsBlockedLog.class.php Fix restore declaration to avoid to many uncompatibility problems. 2024-03-18 15:15:35 +01:00
interface_50_modEventOrganization_EventOrganization.class.php Fix restore declaration to avoid to many uncompatibility problems. 2024-03-18 15:15:35 +01:00
interface_50_modLdap_Ldapsynchro.class.php Fix restore declaration to avoid to many uncompatibility problems. 2024-03-18 15:15:35 +01:00
interface_50_modMailmanspip_Mailmanspipsynchro.class.php Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into develop 2024-03-28 14:39:08 +01:00
interface_50_modNotification_Notification.class.php Fix restore declaration to avoid to many uncompatibility problems. 2024-03-18 15:15:35 +01:00
interface_50_modTicket_TicketEmail.class.php Clean phan warnings 2024-05-30 13:37:17 +02:00
interface_80_modStripe_Stripe.class.php Fix error 2024-04-29 11:34:58 +02:00
interface_90_modSociete_ContactRoles.class.php Fix restore declaration to avoid to many uncompatibility problems. 2024-03-18 15:15:35 +01:00
interface_95_modWebhook_WebhookTriggers.class.php Fix #29797 add test on Target status (#29860) 2024-06-06 23:32:19 +02:00
interface_95_modZapier_ZapierTriggers.class.php Fix restore declaration to avoid to many uncompatibility problems. 2024-03-18 15:15:35 +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.