File modules/wikiparser/model/AbstractElement.class.php

Last commit: Sat Feb 22 22:45:05 2020 +0100	Jan Dankert	Refactoring: Enable Autoloading, Fix namespace structure.
1 <?php 2 3 namespace wikiparser\model; 4 /** 5 * @author $Author$ 6 * @version $Revision$ 7 * @package openrat.text 8 */ 9 class AbstractElement 10 { 11 var $children = array(); 12 13 var $style = ''; 14 var $class = ''; 15 var $title = ''; 16 } 17 18 ?>
Download modules/wikiparser/model/AbstractElement.class.php
History Sat, 22 Feb 2020 22:45:05 +0100 Jan Dankert Refactoring: Enable Autoloading, Fix namespace structure.