-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBadgeEvents.php
59 lines (53 loc) · 1.5 KB
/
BadgeEvents.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
<?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\MauticBadgeGeneratorBundle;
/**
* Class BadgeEvents
* Events available for MauticBadgeGeneratorBundle.
*/
final class BadgeEvents
{
/**
* The mautic.badge_pre_save event is thrown right before a asset is persisted.
*
* The event listener receives a
* MauticPlugin\MauticBadgeGeneratorBundle\Event\BadgeEvent instance.
*
* @var string
*/
const PRE_SAVE = 'mautic.badge_pre_save';
/**
* The mautic.badge_post_save event is thrown right after a asset is persisted.
*
* The event listener receives a
* MauticPlugin\MauticBadgeGeneratorBundle\Event\BadgeEvent instance.
*
* @var string
*/
const POST_SAVE = 'mautic.badge_post_save';
/**
* The mautic.badge_pre_delete event is thrown prior to when a asset is deleted.
*
* The event listener receives a
* MauticPlugin\MauticBadgeGeneratorBundle\Event\BadgeEvent instance.
*
* @var string
*/
const PRE_DELETE = 'mautic.badge_pre_delete';
/**
* The mautic.badge_post_delete event is thrown after a asset is deleted.
*
* The event listener receives a
* MauticPlugin\MauticBadgeGeneratorBundle\Event\BadgeEvent instance.
*
* @var string
*/
const POST_DELETE = 'mautic.badge_post_delete';
}