id; } public function getTitle() { return $this->title; } public function getContent($maxlength = null) { return $maxlength ? mb_strimwidth($this->content, 0, $maxlength, "...") : $this->content; } public function getAuthor() { return $this->author; } public function getDateTime() { return $this->stamp; } }