File modules/wikiparser/model/MacroElement.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 use wikiparser\model\AbstractElement; 6 7 /** 8 * Darstellung eines Makros. 9 * 10 * Ein Makro hat einen Namen sowie n Attribute. 11 * 12 * @author Jan Dankert 13 * @package openrat.text 14 */ 15 class MacroElement extends AbstractElement 16 { 17 var $name; 18 var $attributes = array(); 19 } 20 21 ?>
Download modules/wikiparser/model/MacroElement.class.php
History Sat, 22 Feb 2020 22:45:05 +0100 Jan Dankert Refactoring: Enable Autoloading, Fix namespace structure.