$property.PHP_EOL; } $output .= 'Item::isRTL() = '.($this->isRTL() ? 'true' : 'false').PHP_EOL; $output .= 'Item::content = '.strlen($this->content).' bytes'.PHP_EOL; return $output; } /** * Get title * * @access public * $return string */ public function getTitle() { return $this->title; } /** * Get url * * @access public * $return string */ public function getUrl() { return $this->url; } /** * Get id * * @access public * $return string */ public function getId() { return $this->id; } /** * Get date * * @access public * $return integer */ public function getDate() { return $this->date; } /** * Get content * * @access public * $return string */ public function getContent() { return $this->content; } /** * Get enclosure url * * @access public * $return string */ public function getEnclosureUrl() { return $this->enclosure_url; } /** * Get enclosure type * * @access public * $return string */ public function getEnclosureType() { return $this->enclosure_type; } /** * Get language * * @access public * $return string */ public function getLanguage() { return $this->language; } /** * Get author * * @access public * $return string */ public function getAuthor() { return $this->author; } /** * Return true if the item is "Right to Left" * * @access public * @return bool */ public function isRTL() { return Parser::isLanguageRTL($this->language); } }