-
Notifications
You must be signed in to change notification settings - Fork 8
/
SqlConditionsEvents.php
66 lines (57 loc) · 1.88 KB
/
SqlConditionsEvents.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/*
* @copyright 2019 Mautic Contributors. All rights reserved
* @author Mautic
*
* @link http://mautic.org
*
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
namespace MauticPlugin\MauticSqlConditionsBundle;
final class SqlConditionsEvents
{
/**
* The mautic.sqlConditions_pre_save event is thrown right before a asset is persisted.
*
* The event listener receives a
* MauticPlugin\MauticSqlConditionsBundle\Event\SqlConditionsEvent instance.
*
* @var string
*/
const PRE_SAVE = 'mautic.sqlConditions_pre_save';
/**
* The mautic.sqlConditions_post_save event is thrown right after a asset is persisted.
*
* The event listener receives a
* MauticPlugin\MauticSqlConditionsBundle\Event\SqlConditionsEvent instance.
*
* @var string
*/
const POST_SAVE = 'mautic.sqlConditions_post_save';
/**
* The mautic.sqlConditions_pre_delete event is thrown prior to when a asset is deleted.
*
* The event listener receives a
* MauticPlugin\MauticSqlConditionsBundle\Event\SqlConditionsEvent instance.
*
* @var string
*/
const PRE_DELETE = 'mautic.sqlConditions_pre_delete';
/**
* The mautic.sqlConditions_post_delete event is thrown after a asset is deleted.
*
* The event listener receives a
* MauticPlugin\MauticSqlConditionsBundle\Event\SqlConditionsEvent instance.
*
* @var string
*/
const POST_DELETE = 'mautic.sqlConditions_post_delete';
/**
* The mautic.sqlConditions.on_campaign_condition_trigger event is dispatched when the campaign sql condition is executed.
*
* The event listener receives a * Mautic\CampaignBundle\Event\CampaignExecutionEvent
*
* @var string
*/
const ON_CAMPAIGN_CONDITION_TRIGGER = 'mautic.sqlConditions.on_campaign_condition_trigger';
}