openrat-cms

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

Newline.class.php (200B)


      1 <?php
      2 
      3 namespace template_engine\components;
      4 
      5 use modules\template_engine\Element;
      6 
      7 class NewlineComponent extends Component
      8 {
      9 
     10 	public function createElement()
     11 	{
     12 		return (new Element('br'));
     13 	}
     14 }
     15