openrat-cms

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

Dummy.class.php (240B)


      1 <?php
      2 
      3 namespace template_engine\components;
      4 
      5 use template_engine\components\html\Component;
      6 use template_engine\element\Element;
      7 
      8 class DummyComponent extends Component
      9 {
     10 	public function createElement()
     11 	{
     12 		return new Element(null);
     13 	}
     14 }