-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathFileManagerEvents.php
More file actions
37 lines (31 loc) · 1.79 KB
/
FileManagerEvents.php
File metadata and controls
37 lines (31 loc) · 1.79 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
<?php
namespace Artgris\Bundle\FileManagerBundle\Event;
/**
* @author Arthur Gribet <a.gribet@gmail.com>
*/
final class FileManagerEvents {
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const PRE_UPDATE = 'file_manager.pre_update';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const POST_UPDATE = 'file_manager.post_update';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const RENAME_FILE = 'file_manager.post_rename_file';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const PRE_DELETE_FILE = 'file_manager.pre_delete_file';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const POST_DELETE_FILE = 'file_manager.post_delete_file';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const PRE_DELETE_FOLDER = ' file_manager.pre_delete_folder';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const POST_DELETE_FOLDER = 'file_manager.post_delete_folder';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const RENAME_FOLDER = 'file_manager.post_rename_folder';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const POST_DIRECTORY_FILTER_CONFIGURATION = 'file_manager.post_directory_filter_configuration';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const POST_FILE_FILTER_CONFIGURATION = 'file_manager.post_file_filter_configuration';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const POST_CHECK_SECURITY = 'file_manager.post_check_security';
/** @Event("Symfony\Component\EventDispatcher\GenericEvent") */
public const FILE_ACCESS = 'file_manager.file_access';
}