TYPO3 CMS  TYPO3_6-2
ResourceStorageInterface.php
Go to the documentation of this file.
1 <?php
3 
22 
23  const SIGNAL_PreFileAdd = 'preFileAdd';
24  const SIGNAL_PostFileAdd = 'postFileAdd';
25  const SIGNAL_PostFileCreate = 'postFileCreate';
26  const SIGNAL_PreFileCopy = 'preFileCopy';
27  const SIGNAL_PostFileCopy = 'postFileCopy';
28  const SIGNAL_PreFileMove = 'preFileMove';
29  const SIGNAL_PostFileMove = 'postFileMove';
30  const SIGNAL_PreFileDelete = 'preFileDelete';
31  const SIGNAL_PostFileDelete = 'postFileDelete';
32  const SIGNAL_PreFileRename = 'preFileRename';
33  const SIGNAL_PostFileRename = 'postFileRename';
34  const SIGNAL_PreFileReplace = 'preFileReplace';
35  const SIGNAL_PostFileReplace = 'postFileReplace';
36  const SIGNAL_PostFileSetContents = 'postFileSetContents';
37  const SIGNAL_PreFolderAdd = 'preFolderAdd';
38  const SIGNAL_PostFolderAdd = 'postFolderAdd';
39  const SIGNAL_PreFolderCopy = 'preFolderCopy';
40  const SIGNAL_PostFolderCopy = 'postFolderCopy';
41  const SIGNAL_PreFolderMove = 'preFolderMove';
42  const SIGNAL_PostFolderMove = 'postFolderMove';
43  const SIGNAL_PreFolderDelete = 'preFolderDelete';
44  const SIGNAL_PostFolderDelete = 'postFolderDelete';
45  const SIGNAL_PreFolderRename = 'preFolderRename';
46  const SIGNAL_PostFolderRename = 'postFolderRename';
47  const SIGNAL_PreGeneratePublicUrl = 'preGeneratePublicUrl';
48 
56  const CAPABILITY_PUBLIC = 2;
65  const DEFAULT_ProcessingFolder = '_processed_';
66 
67 }