TYPO3 CMS  TYPO3_8-7
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 
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  {
132  return $this->isAbsolutePath;
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 }