Home
last modified time | relevance | path

Searched refs:enclosure (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DAtomCreator10.php142 if ($this->items[$i]->enclosure != null) {
143 $feed .= " <link rel=\"enclosure\" href=\"".$this->items[$i]->enclosure->url."\" type=\"".$this->items[$i]->enclosure->type."\" length=\"".$this->items[$i]->enclosure->length."\"";
145 if ($this->items[$i]->enclosure->language != "") {
146 $feed .= " xml:lang=\"".$this->items[$i]->enclosure->language."\" ";
149 if ($this->items[$i]->enclosure->title != "") {
150 $feed .= " title=\"".$this->items[$i]->enclosure->title."\" ";
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedItem.php34 * Add <enclosure> element tag RSS 2.0, supported by ATOM 1.0 too
37 * <enclosure length="17691" url="http://something.com/picture.jpg" type="image/jpeg" />
39 public $enclosure; variable in FeedItem
/dokuwiki/vendor/simplepie/simplepie/src/
H A DItem.php808 $enclosure = $this->get_enclosure(0);
811 } elseif ($enclosure !== null) {
812 return $enclosure->get_link();
899 * Get an enclosure from the item
901 * Supports the <enclosure> RSS tag, as well as Media RSS and iTunes RSS.
905 * @param int $key The enclosure that you want to return. Remember that arrays begin with 0, not 1
921 * Supports the <enclosure> RSS tag, as well as Media RSS and iTunes RSS.
2184 if (isset($link['attribs']['']['href']) && !empty($link['attribs']['']['rel']) && $link['attribs']['']['rel'] === 'enclosure') {
2220 if (isset($link['attribs']['']['href']) && !empty($link['attribs']['']['rel']) && $link['attribs']['']['rel'] === 'enclosure') {
2250 foreach ($this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_RSS_20, 'enclosure')
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md35 - No URL Decode for enclosure links by @Alkarex in [#768](https://github.com/simplepie/simplepie/pull/768)
210 * Titles are now parsed for ATOM10 enclosure links. [#507](https://github.com/simplepie/simplepie/pull/507)