-
Notifications
You must be signed in to change notification settings - Fork 6
/
PrintmailingEvents.php
51 lines (45 loc) · 1.75 KB
/
PrintmailingEvents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
namespace MauticPlugin\LeuchtfeuerPrintmailingBundle;
final class PrintmailingEvents
{
/**
* The mautic.triggercampaign_pre_save event is thrown right before a form is persisted.
*
* The event listener receives a MauticPlugin\LeuchtfeuerPrintmailingBundle\Event\TriggerCampaignEvent instance.
*
* @var string
*/
public const TRIGGER_CAMPAIGN_PRE_SAVE = 'mautic.triggercampaign_pre_save';
/**
* The mautic.triggercampaign_post_save is thrown right after a form is persisted.
*
* The event listener receives a MauticPlugin\LeuchtfeuerPrintmailingBundle\Event\TriggerCampaignEvent instance.
*
* @var string
*/
public const TRIGGER_CAMPAIGN_POST_SAVE = 'mautic.triggercampaign_post_save';
/**
* Themautic.triggercampaign_pre_delete event is thrown before a form is deleted.
*
* The event listener receives a MauticPlugin\LeuchtfeuerPrintmailingBundle\Event\TriggerCampaignEvent instance.
*
* @var string
*/
public const TRIGGER_CAMPAIGN_PRE_DELETE = 'mautic.triggercampaign_pre_delete';
/**
* The mautic.triggercampaign_post_delete event is thrown after a form is deleted.
*
* The event listener receives a MauticPlugin\LeuchtfeuerPrintmailingBundle\Event\TriggerCampaignEvent instance.
*
* @var string
*/
public const TRIGGER_CAMPAIGN_POST_DELETE = 'mautic.triggercampaign_post_delete';
/**
* The mautic.printmailing.on_campaign_trigger_action event is fired when the campaign action triggers.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent
*
* @var string
*/
public const ON_CAMPAIGN_TRIGGER_ACTION = 'mautic.printmailing.on_campaign_trigger_action';
}