Lines Matching refs:feed

129      * No known feed type
209 * All feed types
455 * @var string Original feed URL, or new feed URL iff HTTP 301 Moved Permanently
462 * @var object Instance of \SimplePie\File to use as a feed
469 * @var string Raw feed data
498 * @var bool Force the given data/URL to be treated as a feed no matter what
526 * when feed is unavailable.
561 * @var bool Reorder feed by date descending
631 * @var integer Stores the number of items to return per-feed with multifeeds.
639 * request when checking a feed.
678 * The SimplePie class contains feed level data and options
682 * them, you must initialise the feed using $feed->init(). At that point the
685 * Previously, it was possible to pass in the feed URL along with cache
754 * Force the given data/URL to be treated as a feed
760 * @param bool $enable Force the given data/URL to be treated as a feed
768 * Set the URL of the feed you want to parse
770 * This allows you to enter the URL of the feed you want to parse, or the
775 * of a string for the $url. Remember that with each additional feed comes
796 * Set an instance of {@see \SimplePie\File} to use as a feed
815 * Allows you to use a string of RSS/Atom data instead of a remote feed.
817 * If you have a feed available as a string in PHP, you can tell SimplePie
818 * to parse that data string instead of a remote feed. Any set feed URL
833 * This allows you to change the maximum time the feed's server to respond
834 * and send the feed back.
837 * @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed.
896 * feed is unavailable.
913 * Set the length of time (in seconds) that the contents of a feed will be
916 * @param int $seconds The feed content cache duration
924 * Set the length of time (in seconds) that the autodiscovered feed URL will
927 * @param int $seconds The autodiscovered feed URL cache duration.
950 * @param string $url The URL of the feed to be cached.
978 * Set whether feed items should be sorted into reverse chronological order
988 * Set the character encoding used to parse the feed
990 * This overrides the encoding reported by the feed, however it will fall
1005 * Set how much feed autodiscovery to do
1115 * Set which class SimplePie uses for handling feed items
1163 * Set which class SimplePie uses for feed enclosures
1421 * to display a Japanese feed, you'll likely see garbled characters.
1445 * containing URLs that need to be resolved relative to the feed
1487 * Set the limit for items returned per-feed with multifeeds
1507 * Initialize the feed object
1602 $this->error = "A feed could not be found at `$this->feed_url`. Empty body.";
1657 $this->error = "A feed could not be found at `$this->feed_url`. This does not appear to be a valid RSS or Atom feed.";
1745 // If we've got a non feed_url stored (if the page isn't actually a feed, or is a redirect) use that URL.
1747 // Do not need to do feed autodiscovery yet.
1831 // Check if the supplied URL is a feed, if it isn't, look for it.
1843 // Check for both h-feed and h-entry, as both a feed with no entries
1844 // and a list of entries without an h-feed wrapper are both valid.
1845 $query = '//*[contains(concat(" ", @class, " "), " h-feed ") or '.
1850 // Now also do feed discovery, but if microformats were found don't
1873 $this->error = "A feed could not be found at `$this->feed_url`; the status code is `$copyStatusCode` and content-type is `$copyContentType`";
1936 * This is the same as the old `$feed->enable_xml_dump(true)`, but returns
1990 * Get the type of the feed
2012 * @see \SimplePie\SimplePie::TYPE_ALL Any known/supported feed type.
2019 if (isset($this->data['child'][self::NAMESPACE_ATOM_10]['feed'])) {
2021 } elseif (isset($this->data['child'][self::NAMESPACE_ATOM_03]['feed'])) {
2080 * Get the URL for the feed
2082 * When the 'permanent' mode is enabled, returns the original feed URL,
2092 * @todo Support <itunes:new-feed-url>
2128 * Get data for an feed-level element
2131 * sub-element of the opening feed tag.
2162 if (isset($this->data['child'][self::NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag])) {
2163 return $this->data['child'][self::NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag];
2167 if (isset($this->data['child'][self::NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag])) {
2168 return $this->data['child'][self::NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag];
2188 * channel/header section of the feed.
2234 * image/logo section of the feed.
2272 * Get the base URL value from the feed
2275 * feed, or failing that, the URL of the feed itself.
2295 * Sanitize feed data
2320 * Get the title of the feed
2349 * Get a category for the feed
2366 * Get all categories for the feed
2418 * Get an author for the feed
2435 * Get all authors for the feed
2497 * Get a contributor for the feed
2514 * Get all contributors for the feed
2567 * Get a single link for the feed
2601 * Get all links for the feed
2607 * @return array|null Links found for the feed (strings)
2714 * Get the copyright info for the feed
2739 * Get the language for the feed
2754 } elseif (isset($this->data['child'][self::NAMESPACE_ATOM_10]['feed'][0]['xml_lang'])) {
2755 return $this->sanitize($this->data['child'][self::NAMESPACE_ATOM_10]['feed'][0]['xml_lang'], self::CONSTRUCT_TEXT);
2756 } elseif (isset($this->data['child'][self::NAMESPACE_ATOM_03]['feed'][0]['xml_lang'])) {
2757 return $this->sanitize($this->data['child'][self::NAMESPACE_ATOM_03]['feed'][0]['xml_lang'], self::CONSTRUCT_TEXT);
2791 * Get the longitude coordinates for the feed
2816 * Get the feed logo's title
2818 * RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" title.
2842 * Get the feed logo's URL
2845 * have a "feed logo" URL. This points directly to the image itself.
2873 * Get the feed logo's link
2875 * RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" link. This
2897 * Get the feed logo's link
2899 * RSS 2.0 feeds are allowed to have a "feed logo" width.
2902 * the feed is an RSS 2.0 feed.
2918 * Get the feed logo's height
2920 * RSS 2.0 feeds are allowed to have a "feed logo" height.
2923 * the feed is an RSS 2.0 feed.
2939 * Get the number of items in the feed
2945 * @return int Number of items in the feed
2959 * Get a single item from the feed
2981 * Get all items from the feed
3069 * Get the favicon for the current feed
3141 * @param array $urls List of SimplePie feed objects to merge
3144 * @param int $limit Maximum number of items per feed
3175 * There is no way to find PuSH links in the body of a microformats feed,