TYPO3 CMS  TYPO3_8-7
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 
68  public function setCreationDate($creationDate)
69  {
70  $this->creationDate = $creationDate;
71  }
72 
76  public function getModificationDate()
77  {
79  }
80 
85  {
86  $this->modificationDate = $modificationDate;
87  }
88 
92  public function getAuthor()
93  {
94  return $this->author;
95  }
96 
100  public function setAuthor(\TYPO3\CMS\Extbase\Domain\Model\BackendUser $author)
101  {
102  $this->author = $author;
103  }
104 
108  public function getSubject()
109  {
110  return $this->subject;
111  }
112 
116  public function setSubject($subject)
117  {
118  $this->subject = $subject;
119  }
120 
124  public function getMessage()
125  {
126  return $this->message;
127  }
128 
132  public function setMessage($message)
133  {
134  $this->message = $message;
135  }
136 
140  public function getPersonal()
141  {
142  return $this->personal;
143  }
144 
148  public function setPersonal($personal)
149  {
150  $this->personal = $personal;
151  }
152 
156  public function getCategory()
157  {
158  return $this->category;
159  }
160 
164  public function setCategory($category)
165  {
166  $this->category = $category;
167  }
168 }
setAuthor(\TYPO3\CMS\Extbase\Domain\Model\BackendUser $author)
Definition: SysNote.php:100
setModificationDate($modificationDate)
Definition: SysNote.php:84