miniflux-legacy/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Feed.php

239 lines
3.6 KiB
PHP
Raw Normal View History

2014-05-20 20:20:27 +02:00
<?php
namespace PicoFeed\Parser;
2014-05-20 20:20:27 +02:00
/**
* Feed
*
* @author Frederic Guillot
* @package Parser
2014-05-20 20:20:27 +02:00
*/
class Feed
{
/**
* Feed items
*
* @access public
* @var array
*/
public $items = array();
/**
* Feed id
*
* @access public
* @var string
*/
public $id = '';
/**
* Feed title
*
* @access public
* @var string
*/
public $title = '';
/**
2014-10-19 20:42:31 +02:00
* Feed description
*
* @access public
* @var string
*/
public $description = '';
/**
* Feed url
2014-05-20 20:20:27 +02:00
*
* @access public
* @var string
*/
public $feed_url = '';
/**
* Site url
*
* @access public
* @var string
*/
public $site_url = '';
2014-05-20 20:20:27 +02:00
/**
2014-10-19 20:42:31 +02:00
* Feed date
2014-05-20 20:20:27 +02:00
*
* @access public
* @var integer
*/
public $date = 0;
/**
2014-10-19 20:42:31 +02:00
* Feed language
2014-05-20 20:20:27 +02:00
*
* @access public
* @var string
*/
public $language = '';
2014-10-19 20:42:31 +02:00
/**
* Feed logo URL
2014-10-19 20:42:31 +02:00
*
* @access public
* @var string
*/
public $logo = '';
/**
* Feed icon URL
*
* @access public
* @var string
*/
public $icon = '';
2014-05-20 20:20:27 +02:00
/**
* Return feed information
*
* @access public
* $return string
*/
public function __toString()
{
$output = '';
foreach (array('id', 'title', 'feed_url', 'site_url', 'date', 'language', 'description', 'logo') as $property) {
2014-05-20 20:20:27 +02:00
$output .= 'Feed::'.$property.' = '.$this->$property.PHP_EOL;
}
$output .= 'Feed::isRTL() = '.($this->isRTL() ? 'true' : 'false').PHP_EOL;
2014-05-20 20:20:27 +02:00
$output .= 'Feed::items = '.count($this->items).' items'.PHP_EOL;
foreach ($this->items as $item) {
$output .= '----'.PHP_EOL;
$output .= $item;
}
return $output;
}
/**
* Get title
*
* @access public
* $return string
*/
public function getTitle()
{
return $this->title;
}
2014-10-19 20:42:31 +02:00
/**
* Get description
*
* @access public
* $return string
*/
public function getDescription()
{
return $this->description;
}
/**
* Get the logo url
*
* @access public
* $return string
*/
public function getLogo()
{
return $this->logo;
}
/**
* Get the icon url
*
* @access public
* $return string
*/
public function getIcon()
{
return $this->icon;
}
2014-05-20 20:20:27 +02:00
/**
* Get feed url
2014-05-20 20:20:27 +02:00
*
* @access public
* $return string
*/
public function getFeedUrl()
2014-05-20 20:20:27 +02:00
{
return $this->feed_url;
}
/**
* Get site url
*
* @access public
* $return string
*/
public function getSiteUrl()
{
return $this->site_url;
2014-05-20 20:20:27 +02:00
}
/**
* Get date
*
* @access public
* $return integer
*/
public function getDate()
{
return $this->date;
}
/**
* Get language
*
* @access public
* $return string
*/
public function getLanguage()
{
return $this->language;
}
/**
* Get id
*
* @access public
* $return string
*/
public function getId()
{
return $this->id;
}
/**
* Get feed items
*
* @access public
* $return array
*/
public function getItems()
{
return $this->items;
}
/**
* Return true if the feed is "Right to Left"
*
* @access public
* @return bool
*/
public function isRTL()
{
return Parser::isLanguageRTL($this->language);
}
2014-05-20 20:20:27 +02:00
}