‪TYPO3CMS  10.4
FileMount.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 
20 
27 {
28  public function ‪__construct()
29  {
30  trigger_error(
31  __CLASS__ . ' is deprecated since TYPO3 10.4 and will be removed in version 11.0',
32  E_USER_DEPRECATED
33  );
34  }
35 
42  protected ‪$title = '';
43 
49  protected ‪$description;
50 
57  protected ‪$path = '';
58 
68  protected ‪$isAbsolutePath = false;
69 
75  protected ‪$readOnly = false;
76 
82  public function ‪getTitle()
83  {
84  return ‪$this->title;
85  }
86 
92  public function ‪setTitle($value)
93  {
94  $this->title = $value;
95  }
96 
102  public function ‪getDescription()
103  {
104  return ‪$this->description;
105  }
106 
112  public function ‪setDescription(‪$description)
113  {
114  $this->description = ‪$description;
115  }
116 
122  public function ‪getPath()
123  {
124  return ‪$this->path;
125  }
126 
132  public function ‪setPath($value)
133  {
134  $this->path = $value;
135  }
136 
142  public function ‪getIsAbsolutePath()
143  {
145  }
146 
152  public function ‪setIsAbsolutePath($value)
153  {
154  $this->isAbsolutePath = $value;
155  }
156 
162  public function ‪setReadOnly(‪$readOnly)
163  {
164  $this->readOnly = ‪$readOnly;
165  }
166 
172  public function ‪isReadOnly()
173  {
174  return ‪$this->readOnly;
175  }
176 }
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getTitle
‪string getTitle()
Definition: FileMount.php:77
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:18
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setDescription
‪setDescription($description)
Definition: FileMount.php:107
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setReadOnly
‪setReadOnly($readOnly)
Definition: FileMount.php:157
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$isAbsolutePath
‪bool $isAbsolutePath
Definition: FileMount.php:64
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$path
‪string $path
Definition: FileMount.php:54
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setTitle
‪setTitle($value)
Definition: FileMount.php:87
‪TYPO3\CMS\Extbase\DomainObject\AbstractEntity
Definition: AbstractEntity.php:23
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$title
‪string $title
Definition: FileMount.php:41
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\isReadOnly
‪bool isReadOnly()
Definition: FileMount.php:167
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setPath
‪setPath($value)
Definition: FileMount.php:127
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$description
‪string $description
Definition: FileMount.php:47
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getPath
‪string getPath()
Definition: FileMount.php:117
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\__construct
‪__construct()
Definition: FileMount.php:28
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$readOnly
‪bool $readOnly
Definition: FileMount.php:70
‪TYPO3\CMS\Extbase\Domain\Model
Definition: AbstractFileCollection.php:16
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getIsAbsolutePath
‪bool getIsAbsolutePath()
Definition: FileMount.php:137
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getDescription
‪string getDescription()
Definition: FileMount.php:97
‪TYPO3\CMS\Extbase\Domain\Model\FileMount
Definition: FileMount.php:27
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setIsAbsolutePath
‪setIsAbsolutePath($value)
Definition: FileMount.php:147