File modules/cms/action/url/UrlEditAction.class.php

Last commit: Tue Nov 17 23:51:00 2020 +0100	Jan Dankert	Refactoring: Every Actionmethod has now its own class.
1 <?php 2 namespace cms\action\url; 3 use cms\action\Method; 4 use cms\action\UrlAction; 5 6 7 class UrlEditAction extends UrlAction implements Method { 8 public function view() { 9 $this->setTemplateVars( $this->url->getProperties() ); 10 11 // Typ der Verknuepfung 12 $this->setTemplateVar('type' ,$this->url->getType() ); 13 $this->setTemplateVar('url' ,$this->url->url ); 14 } 15 public function post() { 16 } 17 }
Download modules/cms/action/url/UrlEditAction.class.php
History Tue, 17 Nov 2020 23:51:00 +0100 Jan Dankert Refactoring: Every Actionmethod has now its own class.