TYPO3 CMS  TYPO3_7-6
SysNote.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 
21 {
25  protected $creationDate;
26 
30  protected $modificationDate;
31 
35  protected $author;
36 
40  protected $subject;
41 
45  protected $message;
46 
50  protected $personal;
51 
55  protected $category;
56 
60  public function getCreationDate()
61  {
62  return $this->creationDate;
63  }
64 
69  public function setCreationDate($creationDate)
70  {
71  $this->creationDate = $creationDate;
72  }
73 
77  public function getModificationDate()
78  {
80  }
81 
87  {
88  $this->modificationDate = $modificationDate;
89  }
90 
94  public function getAuthor()
95  {
96  return $this->author;
97  }
98 
103  public function setAuthor(\TYPO3\CMS\Extbase\Domain\Model\BackendUser $author)
104  {
105  $this->author = $author;
106  }
107 
111  public function getSubject()
112  {
113  return $this->subject;
114  }
115 
120  public function setSubject($subject)
121  {
122  $this->subject = $subject;
123  }
124 
128  public function getMessage()
129  {
130  return $this->message;
131  }
132 
137  public function setMessage($message)
138  {
139  $this->message = $message;
140  }
141 
145  public function getPersonal()
146  {
147  return $this->personal;
148  }
149 
154  public function setPersonal($personal)
155  {
156  $this->personal = $personal;
157  }
158 
162  public function getCategory()
163  {
164  return $this->category;
165  }
166 
171  public function setCategory($category)
172  {
173  $this->category = $category;
174  }
175 }
setAuthor(\TYPO3\CMS\Extbase\Domain\Model\BackendUser $author)
Definition: SysNote.php:103
setModificationDate($modificationDate)
Definition: SysNote.php:86