[TYPO3-english] 6.2 - Lightbox in extension

Jan Bednarik info at bednarik.org
Mon May 5 13:24:23 CEST 2014


It's not. It's plain upload:

'config' => array(
				'type' => 'group',
				'internal_type' => 'file',
				'uploadfolder' => 'uploads/tx_myext',
                'allowed' =>
$GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],
                'max_size' =>
$GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
				'size' => 5,
                'show_thumbs' => 1,
                'maxitems' => 99
			),

BTW, it's working fine in 6.1. There's difference in TS of
tt_content.image.20.1.imageLinkWrap and so that

typolink.parameter.field = image_link

which would be empty in this case, and so the typolink is not applied,
which is the answer. So, all needed to do in 6.2 to get this working is
to remove typolink:

imageLinkWrap {
                enable >
                enable = 1
                typolink >
            }

Jan

Dne 5.5.2014 11:41, Ralf-Rene Schröder napsal(a):
> if your extension is using FAL then the following is required:
> 
>> plugin.tx_myext_pi1.image = IMAGE
>> plugin.tx_myext_pi1.image {
>>             file.import = uploads/tx_myext/
>>             file.import.current = 1
>>             file.maxH = 115
> 
> file.threadIdAsReference = 1
> 
>>             imageLinkWrap < tt_content.image.20.1.imageLinkWrap
>>             imageLinkWrap {
>>                 enable >
>>                 enable = 1
>>             }
>>         }
> 
> 



More information about the TYPO3-english mailing list