File modules/cms/action/image/ImageEditAction.class.php

Last commit: Sun Feb 13 23:40:54 2022 +0100	dankert	Fix: Missing Preview-Output-Parameter.
1 <?php 2 namespace cms\action\image; 3 use cms\action\ImageAction; 4 use cms\action\Method; 5 use util\Html; 6 7 8 class ImageEditAction extends ImageAction implements Method { 9 10 public function view() { 11 12 $params = [ 13 'output' => 'preview', 14 ]; 15 16 // MIME-Types aus Datei lesen 17 $this->setTemplateVar( 'preview', Html::url('image','show',$this->image->objectid,$params ) ); 18 } 19 20 21 public function post() 22 { 23 } 24 }
Download modules/cms/action/image/ImageEditAction.class.php
History Sun, 13 Feb 2022 23:40:54 +0100 dankert Fix: Missing Preview-Output-Parameter. Thu, 4 Mar 2021 03:39:25 +0100 Jan Dankert New: Separate edit action for images and texts.