openrat-cms

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

Include.class.php (332B)


      1 <?php
      2 
      3 namespace template_engine\components;
      4 
      5 use template_engine\components\html\Component;
      6 
      7 /**
      8  * Pseudo-Component.
      9  * The include component is a pseudo component. The template compiler will resolve this component first and is including another xml source file.
     10  */
     11 class IncludeComponent extends Component
     12 {
     13 
     14 	public $file;
     15 
     16 }
     17