openrat-cms

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

Focus.class.php (241B)


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