TYPO3  7.6
ResourceStorageInterface.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Core\Resource;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
22 {
23  const SIGNAL_SanitizeFileName = 'sanitizeFileName';
24  const SIGNAL_PreFileAdd = 'preFileAdd';
25  const SIGNAL_PostFileAdd = 'postFileAdd';
26  const SIGNAL_PostFileCreate = 'postFileCreate';
27  const SIGNAL_PreFileCopy = 'preFileCopy';
28  const SIGNAL_PostFileCopy = 'postFileCopy';
29  const SIGNAL_PreFileMove = 'preFileMove';
30  const SIGNAL_PostFileMove = 'postFileMove';
31  const SIGNAL_PreFileDelete = 'preFileDelete';
32  const SIGNAL_PostFileDelete = 'postFileDelete';
33  const SIGNAL_PreFileRename = 'preFileRename';
34  const SIGNAL_PostFileRename = 'postFileRename';
35  const SIGNAL_PreFileReplace = 'preFileReplace';
36  const SIGNAL_PostFileReplace = 'postFileReplace';
37  const SIGNAL_PostFileSetContents = 'postFileSetContents';
38  const SIGNAL_PreFolderAdd = 'preFolderAdd';
39  const SIGNAL_PostFolderAdd = 'postFolderAdd';
40  const SIGNAL_PreFolderCopy = 'preFolderCopy';
41  const SIGNAL_PostFolderCopy = 'postFolderCopy';
42  const SIGNAL_PreFolderMove = 'preFolderMove';
43  const SIGNAL_PostFolderMove = 'postFolderMove';
44  const SIGNAL_PreFolderDelete = 'preFolderDelete';
45  const SIGNAL_PostFolderDelete = 'postFolderDelete';
46  const SIGNAL_PreFolderRename = 'preFolderRename';
47  const SIGNAL_PostFolderRename = 'postFolderRename';
48  const SIGNAL_PreGeneratePublicUrl = 'preGeneratePublicUrl';
49 
57  const CAPABILITY_PUBLIC = 2;
66  const DEFAULT_ProcessingFolder = '_processed_';
67 }