‪TYPO3CMS  9.5
FileMount.php
Go to the documentation of this file.
1 <?php
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 
18 
23 {
30  protected ‪$title = '';
31 
37  protected ‪$description;
38 
45  protected ‪$path = '';
46 
56  protected ‪$isAbsolutePath = false;
57 
63  protected ‪$readOnly = false;
64 
70  public function ‪getTitle()
71  {
72  return ‪$this->title;
73  }
74 
80  public function ‪setTitle($value)
81  {
82  $this->title = $value;
83  }
84 
90  public function ‪getDescription()
91  {
92  return ‪$this->description;
93  }
94 
100  public function ‪setDescription(‪$description)
101  {
102  $this->description = ‪$description;
103  }
104 
110  public function ‪getPath()
111  {
112  return ‪$this->path;
113  }
114 
120  public function ‪setPath($value)
121  {
122  $this->path = $value;
123  }
124 
130  public function ‪getIsAbsolutePath()
131  {
133  }
134 
140  public function ‪setIsAbsolutePath($value)
141  {
142  $this->isAbsolutePath = $value;
143  }
144 
150  public function ‪setReadOnly(‪$readOnly)
151  {
152  $this->readOnly = ‪$readOnly;
153  }
154 
160  public function ‪isReadOnly()
161  {
162  return ‪$this->readOnly;
163  }
164 }
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getTitle
‪string getTitle()
Definition: FileMount.php:65
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:4
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setDescription
‪setDescription($description)
Definition: FileMount.php:95
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setReadOnly
‪setReadOnly($readOnly)
Definition: FileMount.php:145
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$isAbsolutePath
‪bool $isAbsolutePath
Definition: FileMount.php:52
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$path
‪string $path
Definition: FileMount.php:42
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setTitle
‪setTitle($value)
Definition: FileMount.php:75
‪TYPO3\CMS\Extbase\DomainObject\AbstractEntity
Definition: AbstractEntity.php:22
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$title
‪string $title
Definition: FileMount.php:29
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\isReadOnly
‪bool isReadOnly()
Definition: FileMount.php:155
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setPath
‪setPath($value)
Definition: FileMount.php:115
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$description
‪string $description
Definition: FileMount.php:35
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getPath
‪string getPath()
Definition: FileMount.php:105
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\$readOnly
‪bool $readOnly
Definition: FileMount.php:58
‪TYPO3\CMS\Extbase\Domain\Model
Definition: AbstractFileCollection.php:2
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getIsAbsolutePath
‪bool getIsAbsolutePath()
Definition: FileMount.php:125
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\getDescription
‪string getDescription()
Definition: FileMount.php:85
‪TYPO3\CMS\Extbase\Domain\Model\FileMount
Definition: FileMount.php:23
‪TYPO3\CMS\Extbase\Domain\Model\FileMount\setIsAbsolutePath
‪setIsAbsolutePath($value)
Definition: FileMount.php:135