openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

UrlEditAction.class.php (441B)


      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 }