This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FQTDBCoreManagerEvents.php
62 lines (54 loc) · 1.79 KB
/
FQTDBCoreManagerEvents.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
<?php
/*
* This file is part of the FQTDBCoreManagerBundle package.
*
* (c) FOUQUET <https://github.com/hugo082/DBManagerBundle>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Hugo Fouquet <[email protected]>
*/
namespace FQT\DBCoreManagerBundle;
/**
* Contains all events thrown in the DBManagerBundle.
*/
final class FQTDBCoreManagerEvents
{
/**
* The ACTION_REMOVE_BEFORE event occurs when the remove action will be called.
*
* @Event("DB\ManagerBundle\Event\ActionEvent")
*/
const ACTION_REMOVE_BEFORE = 'fqtdb_core_manager.action.remove.before';
/**
* The ACTION_REMOVE_AFTER event occurs after the remove action have been called.
*
* @Event("DB\ManagerBundle\Event\ActionEvent")
*/
const ACTION_REMOVE_AFTER = 'fqtdb_core_manager.action.remove.after';
/**
* The ACTION_EDIT_BEFORE event occurs when the edit action will be called.
*
* @Event("DB\ManagerBundle\Event\ActionEvent")
*/
const ACTION_EDIT_BEFORE = 'fqtdb_core_manager.action.edit.before';
/**
* The ACTION_EDIT_AFTER event occurs after the edit action have been called.
*
* @Event("DB\ManagerBundle\Event\ActionEvent")
*/
const ACTION_EDIT_AFTER = 'fqtdb_core_manager.action.edit.after';
/**
* The ACTION_ADD_BEFORE event occurs when the add action will be called.
*
* @Event("DB\ManagerBundle\Event\ActionEvent")
*/
const ACTION_ADD_BEFORE = 'fqtdb_core_manager.action.add.before';
/**
* The ACTION_ADD_AFTER event occurs after the add action have been called.
*
* @Event("DB\ManagerBundle\Event\ActionEvent")
*/
const ACTION_ADD_AFTER = 'fqtdb_core_manager.action.add.after';
}