This repository was archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvents.php
More file actions
61 lines (55 loc) · 1.4 KB
/
Events.php
File metadata and controls
61 lines (55 loc) · 1.4 KB
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
<?php
namespace FDevs\Tag;
final class Events
{
/**
* The CREATE event is dispatched then tag create.
*
* The event listener method receives a FDevs\Tag\Event\TagEvent instance
*
* @Event
*
* @var string
*/
const TAG_CREATE = 'fdevs_tag.tag.create';
/**
* The TAG_PRE_PERSIST event is dispatched then tag pre persist in db.
*
* The event listener method receives a FDevs\Tag\Event\TagEvent instance
*
* @Event
*
* @var string
*/
const TAG_PRE_PERSIST = 'fdevs_tag.tag.pre_persist';
/**
* The TAG_POST_PERSIST event is dispatched then tag post persist in db.
*
* The event listener method receives a FDevs\Tag\Event\TagEvent instance
*
* @Event
*
* @var string
*/
const TAG_POST_PERSIST = 'fdevs_tag.tag.post_persist';
/**
* The TAG_PRE_REMOVE event is dispatched then tag pre remove from db.
*
* The event listener method receives a FDevs\Tag\Event\TagEvent instance
*
* @Event
*
* @var string
*/
const TAG_PRE_REMOVE = 'fdevs_tag.tag.pre_remove';
/**
* The TAG_PRE_REMOVE event is dispatched then tag post remove from db.
*
* The event listener method receives a FDevs\Tag\Event\TagEvent instance
*
* @Event
*
* @var string
*/
const TAG_POST_REMOVE = 'fdevs_tag.tag.post_remove';
}