openrat-cms

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

RawElement.class.php (331B)


      1 <?php
      2 
      3 namespace wikiparser\model;
      4 
      5 use wikiparser\model\AbstractElement;
      6 
      7 /**
      8  * @author $Author$
      9  * @version $Revision$
     10  * @package openrat.text
     11  */
     12 class RawElement extends AbstractElement
     13 {
     14 	var $src = '';
     15 
     16 	/**
     17 	 * RawElement constructor.
     18 	 * @param string $t
     19 	 */
     20 	function __construct($t = '')
     21 	{
     22 		$this->src = $t;
     23 	}
     24 }
     25 
     26 ?>