TYPO3 CMS  TYPO3_6-2
AbstractStatus.php
Go to the documentation of this file.
1 <?php
3 
22 abstract class AbstractStatus implements StatusInterface {
23 
27  protected $severity = '';
28 
32  protected $title = '';
33 
37  protected $message = '';
38 
42  public function getSeverity() {
43  return $this->severity;
44  }
45 
49  public function getTitle() {
50  return $this->title;
51  }
52 
59  public function setTitle($title) {
60  $this->title = $title;
61  }
62 
68  public function getMessage() {
69  return $this->message;
70  }
71 
78  public function setMessage($message) {
79  $this->message = $message;
80  }
81 }