openrat-cms

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

Window.class.php (264B)


      1 <?php
      2 
      3 namespace template_engine\components;
      4 
      5 
      6 use template_engine\components\html\Component;
      7 use template_engine\element\Element;
      8 
      9 class WindowComponent extends Component
     10 {
     11 
     12 	public function createElement()
     13 	{
     14 		// No content.
     15 		return new Element(null );
     16 	}
     17 }
     18 
     19