openrat-cms

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

Output.class.php (304B)


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