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

Last commit: Thu Mar 4 03:39:25 2021 +0100	Jan Dankert	New: Separate edit action for images and texts.
1 <?php 2 namespace cms\action\text; 3 use cms\action\Method; 4 use cms\action\TextAction; 5 6 7 class TextEditAction extends TextAction implements Method { 8 9 public function view() { 10 $this->setTemplateVar( 'source',$this->text->loadValue() ); 11 } 12 13 14 public function post() 15 { 16 } 17 }
Download modules/cms/action/text/TextEditAction.class.php
History Thu, 4 Mar 2021 03:39:25 +0100 Jan Dankert New: Separate edit action for images and texts.