summaryrefslogtreecommitdiff
path: root/platform/www/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php')
-rw-r--r--platform/www/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/platform/www/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php b/platform/www/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php
new file mode 100644
index 0000000..cc9df46
--- /dev/null
+++ b/platform/www/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * A FeedImage may be added to a FeedCreator feed.
+ *
+ * @author Kai Blankenhorn <kaib@bitfolge.de>
+ * @since 1.3
+ */
+class FeedImage extends HtmlDescribable
+{
+ /**
+ * Mandatory attributes of an image.
+ */
+ public $title, $url, $link;
+
+ /**
+ * Optional attributes of an image.
+ */
+ public $width, $height, $description;
+}