openrat-cms

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

Page.class.php (259B)


      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 PageComponent extends Component
      9 {
     10 	public function createElement()
     11 	{
     12 		// No content.
     13 		return new Element(null );
     14 	}
     15 }
     16