TYPO3 CMS  TYPO3_6-2
SysNote.php
Go to the documentation of this file.
1 <?php
3 
23 
27  protected $creationDate;
28 
32  protected $modificationDate;
33 
37  protected $author;
38 
42  protected $subject;
43 
47  protected $message;
48 
52  protected $personal;
53 
57  protected $category;
58 
62  public function getCreationDate() {
63  return $this->creationDate;
64  }
65 
70  public function setCreationDate($creationDate) {
71  $this->creationDate = $creationDate;
72  }
73 
77  public function getModificationDate() {
79  }
80 
86  $this->modificationDate = $modificationDate;
87  }
88 
92  public function getAuthor() {
93  return $this->author;
94  }
95 
100  public function setAuthor(\TYPO3\CMS\Extbase\Domain\Model\BackendUser $author) {
101  $this->author = $author;
102  }
103 
107  public function getSubject() {
108  return $this->subject;
109  }
110 
115  public function setSubject($subject) {
116  $this->subject = $subject;
117  }
118 
122  public function getMessage() {
123  return $this->message;
124  }
125 
130  public function setMessage($message) {
131  $this->message = $message;
132  }
133 
137  public function getPersonal() {
138  return $this->personal;
139  }
140 
145  public function setPersonal($personal) {
146  $this->personal = $personal;
147  }
148 
152  public function getCategory() {
153  return $this->category;
154  }
155 
160  public function setCategory($category) {
161  $this->category = $category;
162  }
163 
164 }
setAuthor(\TYPO3\CMS\Extbase\Domain\Model\BackendUser $author)
Definition: SysNote.php:100
setModificationDate($modificationDate)
Definition: SysNote.php:85