Home
last modified time | relevance | path

Searched refs:thumbnails (Results 1 – 3 of 3) sorted by last modified time

/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md262 * Added support for media thumbnails through `SimplePie_Item->get_thumbnail()`. [#348](https://github.com/simplepie/simplepie/pull/348)
/dokuwiki/vendor/simplepie/simplepie/src/
H A DEnclosure.php202 public $thumbnails; variable in SimplePie\\Enclosure
230 public function __construct($link = null, $type = null, $length = null, $javascript = null, $bitrate = null, $captions = null, $categories = null, $channels = null, $copyright = null, $credits = null, $description = null, $duration = null, $expression = null, $framerate = null, $hashes = null, $height = null, $keywords = null, $lang = null, $medium = null, $player = null, $ratings = null, $restrictions = null, $samplingrate = null, $thumbnails = null, $title = null, $width = null) argument
253 $this->thumbnails = $thumbnails;
742 $thumbnails = $this->get_thumbnails();
743 if (isset($thumbnails[$key])) {
744 return $thumbnails[$key];
751 * Get all thumbnails
757 if ($this->thumbnails !== null) {
758 return $this->thumbnails;
[all...]
H A DItem.php1361 if ($thumbnails = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_MEDIARSS, 'thumbnail')) {
1362 foreach ($thumbnails as $thumbnail) {
1367 } elseif ($thumbnails = $parent->get_channel_tags(\SimplePie\SimplePie::NAMESPACE_MEDIARSS, 'thumbnail')) {
1368 foreach ($thumbnails as $thumbnail) {
1416 $thumbnails = null;
1452 $thumbnails = null;
1845 $thumbnails[] = $this->sanitize($thumbnail['attribs']['']['url'], \SimplePie\SimplePie::CONSTRUCT_IRI);
1847 if (is_array($thumbnails)) {
1848 $thumbnails = array_values(array_unique($thumbnails));
[all...]