Hallo,
ich habe eben mal bisschen herum probiert ...

Habe im FLUID Tempalte folgendes geändert

ALT:

   <f:if condition="{imgTeaser}">
     <f:image src="{imgTeaser}" alt="" />
   </f:if>

NEU:

   <f:if condition="{imgTeaser}">
     <f:image src="uploads/tx_mymodules/{imgTeaser}" alt="" />
   </f:if>


Und in der PHP Klasse:

   var $imagePath = 'uploads/tx_mymodules/';

   public function main($content, array $conf) {
     ...
     $image = $this-> imagePath . 
$this->pi_getFFvalue($this->cObj->data['pi_flexform'], 'image', 'basicsheet');
     ...
   }

Change To:

   public function main($content, array $conf) {
     ...
     $image = $this->pi_getFFvalue($this->cObj->data['pi_flexform'], 'image', 
'basicsheet');
     ...
   }



Ich weiß nicht warum das so ist. Auf jeden Fall geht es nun. Vielleicht kann 
mir das mal einer kurz erklären wenn er das liest .. danke.

_______________________________________________
TYPO3-german mailing list
TYPO3-german@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german

Antwort per Email an