File modules/template_engine/engine/TemplateContext.class.php

Last commit: Wed Nov 17 23:22:19 2021 +0100	Jan Dankert	Refactoring: Using a template context for templates instead of the HTTP-Request-Data
1 <?php 2 3 4 namespace template_engine\engine; 5 use DomainException; 6 use DOMDocument; 7 use DOMElement; 8 use Exception; 9 use LogicException; 10 use template_engine\element\XMLFormatter; 11 use template_engine\element\PHPBlockElement; 12 use template_engine\components\html\Component; 13 use template_engine\components\html\NativeHtmlComponent; 14 15 /** 16 * Template context 17 * 18 * @author Jan Dankert 19 */ 20 class TemplateContext 21 { 22 public $action; 23 24 public $subaction; 25 26 public $id; 27 }
Download modules/template_engine/engine/TemplateContext.class.php
History Wed, 17 Nov 2021 23:22:19 +0100 Jan Dankert Refactoring: Using a template context for templates instead of the HTTP-Request-Data