id = $data['id']; } $this->title = $data['title']; $this->description = $data['description']; $this->component = $data['component']; } public function getId() { return $this->id; } public function getTitle() { return $this->title; } public function getDescription() { return $this->description; } public function getShortDescription() { return substr($this->description, 0, 20); } public function getComponent() { return $this->component; } }