forked from Leuchtfeuer/mautic-goto-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGoToEvents.php
164 lines (146 loc) · 5.39 KB
/
GoToEvents.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
/*
* @copyright 2016 Mautic, Inc. All rights reserved
* @author Mautic, Inc
*
* @link https://mautic.org
*
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
namespace MauticPlugin\MauticGoToBundle;
/**
* Class GoToEvents.
*
* Events available for MauticGoToBundle
*/
final class GoToEvents
{
/**
* The mautic.on_citrix_form_validate_action event is dispatched when a form is validated.
*
* The event listener receives a Mautic\FormBundle\Event\ValidationEvent instance.
*
* @var string
*/
public const ON_FORM_VALIDATE_ACTION = 'mautic.on_citrix_form_validate_action';
/**
* The mautic.on_citrix_webinar_event event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_WEBINAR_EVENT = 'mautic.on_citrix_webinar_event';
/**
* The mautic.on_citrix_meeting_event event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_MEETING_EVENT = 'mautic.on_citrix_meeting_event';
/**
* The mautic.on_citrix_training_event event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_TRAINING_EVENT = 'mautic.on_citrix_training_event';
/**
* The mautic.on_citrix_assist_event event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_ASSIST_EVENT = 'mautic.on_citrix_assist_event';
/**
* The mautic.on_citrix_webinar_action event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_WEBINAR_ACTION = 'mautic.on_citrix_webinar_action';
/**
* The mautic.on_citrix_meeting_action event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_MEETING_ACTION = 'mautic.on_citrix_meeting_action';
/**
* The mautic.on_citrix_training_action event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_TRAINING_ACTION = 'mautic.on_citrix_training_action';
/**
* The mautic.on_citrix_assist_action event is dispatched when a campaign event is triggered.
*
* The event listener receives a Mautic\CampaignBundle\Event\CampaignExecutionEvent instance.
*
* @var string
*/
public const ON_GOTO_ASSIST_ACTION = 'mautic.on_citrix_assist_action';
/**
* The mautic.on_webinar_register_action event is dispatched when form with that action is submitted.
*
* The event listener receives a Mautic\CampaignBundle\Event\SubmissionEvent instance.
*
* @var string
*/
public const ON_GOTO_REGISTER_ACTION = 'mautic.on_webinar_register_action';
/**
* The mautic.on_meeting_start_action event is dispatched when form with that action is submitted.
*
* The event listener receives a Mautic\CampaignBundle\Event\SubmissionEvent instance.
*
* @var string
*/
public const ON_MEETING_START_ACTION = 'mautic.on_meeting_start_action';
/**
* The mautic.on_training_register_action event is dispatched when form with that action is submitted.
*
* The event listener receives a Mautic\CampaignBundle\Event\SubmissionEvent instance.
*
* @var string
*/
public const ON_TRAINING_REGISTER_ACTION = 'mautic.on_training_register_action';
/**
* The mautic.on_training_start_action event is dispatched when form with that action is submitted.
*
* The event listener receives a Mautic\CampaignBundle\Event\SubmissionEvent instance.
*
* @var string
*/
public const ON_TRAINING_START_ACTION = 'mautic.on_training_start_action';
/**
* The mautic.on_assist_remote_action event is dispatched when form with that action is submitted.
*
* The event listener receives a Mautic\CampaignBundle\Event\SubmissionEvent instance.
*
* @var string
*/
public const ON_ASSIST_REMOTE_ACTION = 'mautic.on_assist_remote_action';
/**
* The mautic.on_citrix_token_generate event is dispatched before a token is decoded.
*
* The event listener receives a MauticPlugin\MauticGoToBundle\Event\TokenGenerateEvent instance.
*
* @var string
*/
public const ON_GOTO_TOKEN_GENERATE = 'mautic.on_citrix_token_generate';
/**
* The mautic.on_citrix_event_update event is dispatched when an event has been updated externally.
*
* The event listener receives a MauticPlugin\MauticGoToBundle\Event\GoToEventUpdateEvent instance.
*
* @var string
*/
public const ON_GOTO_EVENT_UPDATE = 'mautic.on_citrix_event_update';
}