_url = $post['u']; $this->_title = $post['d']; if (isset($post['t'])) { $this->_tags = $post['t']; } if (isset($post['n'])) { $this->_notes = $post['n']; } } /** * Getter for URL * * @return string */ public function getUrl() { return $this->_url; } /** * Getter for title * * @return string */ public function getTitle() { return $this->_title; } /** * Getter for notes * * @return string */ public function getNotes() { return $this->_notes; } /** * Getter for tags * * @return array */ public function getTags() { return $this->_tags; } }