openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

RawElement.class.php (277B)


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