openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

OutputComponent.class.php (326B)


      1 <?php
      2 
      3 namespace template_engine\components\html\component_output;
      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 }