xref: /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php (revision e43cd7e11322648414daef21f777734a2cafc5c8)
1*572dd708SAndreas Gohr<?php
2*572dd708SAndreas Gohr
3*572dd708SAndreas Gohr/**
4*572dd708SAndreas Gohr * A FeedImage may be added to a FeedCreator feed.
5*572dd708SAndreas Gohr *
6*572dd708SAndreas Gohr * @author  Kai Blankenhorn <kaib@bitfolge.de>
7*572dd708SAndreas Gohr * @since   1.3
8*572dd708SAndreas Gohr */
9*572dd708SAndreas Gohrclass FeedImage extends HtmlDescribable
10*572dd708SAndreas Gohr{
11*572dd708SAndreas Gohr    /**
12*572dd708SAndreas Gohr     * Mandatory attributes of an image.
13*572dd708SAndreas Gohr     */
14*572dd708SAndreas Gohr    public $title, $url, $link;
15*572dd708SAndreas Gohr
16*572dd708SAndreas Gohr    /**
17*572dd708SAndreas Gohr     * Optional attributes of an image.
18*572dd708SAndreas Gohr     */
19*572dd708SAndreas Gohr    public $width, $height, $description;
20*572dd708SAndreas Gohr}
21