-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMediaEvents.php
75 lines (67 loc) · 2.06 KB
/
MediaEvents.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
<?php
/*
* @copyright 2018 Mautic Contributors. All rights reserved
* @author Digital Media Solutions, LLC
*
* @link http://mautic.org
*
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
namespace MauticPlugin\MauticMediaBundle;
/**
* Class MediaEvents.
*
* Events available for MauticMediaBundle
*/
final class MediaEvents
{
/**
* The mautic.media_post_delete event is dispatched after a media is deleted.
*
* The event listener receives a MauticPlugin\MauticMediaBundle\Event\MediaEvent instance.
*
* @var string
*/
const POST_DELETE = 'mautic.media_post_delete';
/**
* The mautic.media_post_save event is dispatched right after a media is persisted.
*
* The event listener receives a MauticPlugin\MauticMediaBundle\Event\MediaEvent instance.
*
* @var string
*/
const POST_SAVE = 'mautic.media_post_save';
/**
* The mautic.media_pre_delete event is dispatched before a media is deleted.
*
* The event listener receives a MauticPlugin\MauticMediaBundle\Event\MediaEvent instance.
*
* @var string
*/
const PRE_DELETE = 'mautic.media_pre_delete';
/**
* The mautic.media_pre_save event is dispatched right before a media is persisted.
*
* The event listener receives a MauticPlugin\MauticMediaBundle\Event\MediaEvent instance.
*
* @var string
*/
const PRE_SAVE = 'mautic.media_pre_save';
/**
* The mautic.media_stat_save event is dispatched after a Contact Client Stat is saved.
*
* The event listener receives a MauticPlugin\MauticMediaBundle\Event\ContactClientStatEvent instance.
*
* @var string
*/
const STAT_SAVE = 'mautic.media_stat_save';
/**
* The mautic.media_timeline_on_generate event is dispatched when generating a timeline view.
*
* The event listener receives a
* MauticPlugin\MauticMediaBundle\Event\LeadTimelineEvent instance.
*
* @var string
*/
const TIMELINE_ON_GENERATE = 'mautic.media_timeline_on_generate';
}