‪TYPO3CMS  10.4
FolderInterface.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
22 {
26  const ‪ROLE_DEFAULT = 'default';
27  const ‪ROLE_RECYCLER = 'recycler';
28  const ‪ROLE_PROCESSING = 'processing';
29  const ‪ROLE_TEMPORARY = 'temporary';
30  const ‪ROLE_USERUPLOAD = 'userupload';
31  const ‪ROLE_MOUNT = 'mount';
32  const ‪ROLE_READONLY_MOUNT = 'readonly-mount';
33  const ‪ROLE_USER_MOUNT = 'user-mount';
34 
40  public function ‪getSubfolders();
41 
48  public function ‪getSubfolder($name);
49 
56  public function ‪hasFolder($name);
57 
64  public function ‪hasFile($name);
65 
72  public function ‪rename($newName);
73 
79  public function delete();
80 
86  public function ‪getModificationTime();
87 
93  public function ‪getCreationTime();
94 }
‪TYPO3\CMS\Core\Resource\FolderInterface\getSubfolders
‪Folder[] getSubfolders()
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_DEFAULT
‪const ROLE_DEFAULT
Definition: FolderInterface.php:26
‪TYPO3\CMS\Core\Resource\FolderInterface\rename
‪Folder rename($newName)
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_USERUPLOAD
‪const ROLE_USERUPLOAD
Definition: FolderInterface.php:30
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_TEMPORARY
‪const ROLE_TEMPORARY
Definition: FolderInterface.php:29
‪TYPO3\CMS\Core\Resource\FolderInterface\hasFolder
‪bool hasFolder($name)
‪TYPO3\CMS\Core\Resource\FolderInterface\getCreationTime
‪int getCreationTime()
‪TYPO3\CMS\Core\Resource\FolderInterface\getModificationTime
‪int getModificationTime()
‪TYPO3\CMS\Core\Resource\Folder
Definition: Folder.php:37
‪TYPO3\CMS\Core\Resource\FolderInterface\getSubfolder
‪Folder getSubfolder($name)
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_PROCESSING
‪const ROLE_PROCESSING
Definition: FolderInterface.php:28
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_MOUNT
‪const ROLE_MOUNT
Definition: FolderInterface.php:31
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_USER_MOUNT
‪const ROLE_USER_MOUNT
Definition: FolderInterface.php:33
‪TYPO3\CMS\Core\Resource
Definition: generateMimeTypes.php:52
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_READONLY_MOUNT
‪const ROLE_READONLY_MOUNT
Definition: FolderInterface.php:32
‪TYPO3\CMS\Core\Resource\FolderInterface\ROLE_RECYCLER
‪const ROLE_RECYCLER
Definition: FolderInterface.php:27
‪TYPO3\CMS\Core\Resource\FolderInterface
Definition: FolderInterface.php:22
‪TYPO3\CMS\Core\Resource\FolderInterface\hasFile
‪bool hasFile($name)
‪TYPO3\CMS\Core\Resource\ResourceInterface
Definition: ResourceInterface.php:22