File modules/cms/action/text/TextShowAction.class.php

Last commit: Fri Mar 18 22:38:42 2022 +0100	dankert	Refactoring: Extracted the TemplateGenerator out of the PageGenerator.
1 <?php 2 namespace cms\action\text; 3 use cms\action\Method; 4 use cms\action\TextAction; 5 6 class TextShowAction extends TextAction implements Method { 7 public function view() { 8 9 parent::view(); 10 } 11 }
Download modules/cms/action/text/TextShowAction.class.php
History Fri, 18 Mar 2022 22:38:42 +0100 dankert Refactoring: Extracted the TemplateGenerator out of the PageGenerator. Tue, 17 Nov 2020 23:51:00 +0100 Jan Dankert Refactoring: Every Actionmethod has now its own class.