TYPO3 CMS  TYPO3_7-6
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 
81  public function setTitle($value)
82  {
83  $this->title = $value;
84  }
85 
91  public function getDescription()
92  {
93  return $this->description;
94  }
95 
102  public function setDescription($description)
103  {
104  $this->description = $description;
105  }
106 
112  public function getPath()
113  {
114  return $this->path;
115  }
116 
123  public function setPath($value)
124  {
125  $this->path = $value;
126  }
127 
133  public function getIsAbsolutePath()
134  {
135  return $this->isAbsolutePath;
136  }
137 
144  public function setIsAbsolutePath($value)
145  {
146  $this->isAbsolutePath = $value;
147  }
148 
154  public function setReadOnly($readOnly)
155  {
156  $this->readOnly = $readOnly;
157  }
158 
164  public function isReadOnly()
165  {
166  return $this->readOnly;
167  }
168 }