TYPO3 CMS  TYPO3_6-2
FileMount.php
Go to the documentation of this file.
1 <?php
3 
22 
29  protected $title = '';
30 
37  protected $path = '';
38 
48  protected $isAbsolutePath = FALSE;
49 
55  public function getTitle() {
56  return $this->title;
57  }
58 
65  public function setTitle($value) {
66  $this->title = $value;
67  }
68 
74  public function getPath() {
75  return $this->path;
76  }
77 
84  public function setPath($value) {
85  $this->path = $value;
86  }
87 
93  public function getIsAbsolutePath() {
94  return $this->isAbsolutePath;
95  }
96 
103  public function setIsAbsolutePath($value) {
104  $this->isAbsolutePath = $value;
105  }
106 
112  public function isReadOnly() {
113  return FALSE;
114  }
115 }