2014-07-23 15:52:50 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class FreshRSS_Log extends Minz_Model {
|
|
|
|
private $date;
|
|
|
|
private $level;
|
|
|
|
private $information;
|
|
|
|
|
2015-02-08 18:55:48 +01:00
|
|
|
public function date() {
|
2014-07-23 15:52:50 +02:00
|
|
|
return $this->date;
|
|
|
|
}
|
2015-02-08 18:55:48 +01:00
|
|
|
public function level() {
|
2014-07-23 15:52:50 +02:00
|
|
|
return $this->level;
|
|
|
|
}
|
2015-02-08 18:55:48 +01:00
|
|
|
public function info() {
|
2014-07-23 15:52:50 +02:00
|
|
|
return $this->information;
|
|
|
|
}
|
2015-02-08 18:55:48 +01:00
|
|
|
public function _date($date) {
|
2014-07-23 15:52:50 +02:00
|
|
|
$this->date = $date;
|
|
|
|
}
|
2015-02-08 18:55:48 +01:00
|
|
|
public function _level($level) {
|
2014-07-23 15:52:50 +02:00
|
|
|
$this->level = $level;
|
|
|
|
}
|
2015-02-08 18:55:48 +01:00
|
|
|
public function _info($information) {
|
2014-07-23 15:52:50 +02:00
|
|
|
$this->information = $information;
|
|
|
|
}
|
|
|
|
}
|