openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

ImageElement.class.php (211B)


      1 <?php
      2 
      3 namespace wikiparser\model;
      4 use wikiparser\model\LinkElement;
      5 
      6 /**
      7  * @author $Author$
      8  * @version $Revision$
      9  * @package openrat.text
     10  */
     11 class ImageElement extends LinkElement
     12 {
     13 	var $description;
     14 }
     15 
     16 ?>