diff options
author | ahriman <ahriman@falte.red> | 2019-01-02 04:57:35 +0000 |
---|---|---|
committer | ahriman <ahriman@falte.red> | 2019-01-02 04:57:35 +0000 |
commit | 2bd7f83a6495011ada78ca8a9f2af417caf01760 (patch) | |
tree | f9acdb7f09e011c65330ab993d4db3620787dbfb /wiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedItem.php | |
parent | bcb215c3a7e914d05f166846a33860e48bba64fb (diff) | |
download | site-2bd7f83a6495011ada78ca8a9f2af417caf01760.tar.gz |
removed dokuwiki
Diffstat (limited to 'wiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedItem.php')
-rw-r--r-- | wiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedItem.php | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/wiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedItem.php b/wiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedItem.php deleted file mode 100644 index 8277685..0000000 --- a/wiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedItem.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -/** - * A FeedItem is a part of a FeedCreator feed. - * - * @author Kai Blankenhorn <kaib@bitfolge.de> - * @since 1.3 - * @package de.bitfolge.feedcreator - */ -class FeedItem extends HtmlDescribable -{ - /** - * Mandatory attributes of an item. - */ - public $title, $description, $link; - - /** - * Optional attributes of an item. - */ - public $author, $authorEmail, $authorURL, $image, $category, $categoryScheme, $comments, $guid, $source, $creator, $contributor, $lat, $long, $thumb; - - /** - * Publishing date of an item. May be in one of the following formats: - * RFC 822: - * "Mon, 20 Jan 03 18:05:41 +0400" - * "20 Jan 03 18:05:41 +0000" - * ISO 8601: - * "2003-01-20T18:05:41+04:00" - * Unix: - * 1043082341 - */ - public $date; - - /** - * Add <enclosure> element tag RSS 2.0, supported by ATOM 1.0 too - * modified by : Mohammad Hafiz bin Ismail (mypapit@gmail.com) - * display : - * <enclosure length="17691" url="http://something.com/picture.jpg" type="image/jpeg" /> - */ - public $enclosure; - - /** - * Any additional elements to include as an associated array. All $key => $value pairs - * will be included unencoded in the feed item in the form - * <$key>$value</$key> - * Again: No encoding will be used! This means you can invalidate or enhance the feed - * if $value contains markup. This may be abused to embed tags not implemented by - * the FeedCreator class used. - */ - public $additionalElements = Array(); - - // on hold - // var $source; -} |