[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/vendor/openpsa/universalfeedcreator/lib/Element/ -> FeedImage.php (source)

   1  <?php
   2  
   3  /**
   4   * A FeedImage may be added to a FeedCreator feed.
   5   *
   6   * @author  Kai Blankenhorn <kaib@bitfolge.de>
   7   * @since   1.3
   8   */
   9  class FeedImage extends HtmlDescribable
  10  {
  11      /**
  12       * Mandatory attributes of an image.
  13       */
  14      public $title, $url, $link;
  15  
  16      /**
  17       * Optional attributes of an image.
  18       */
  19      public $width, $height, $description;
  20  }