[TYPO3-dev] TS config for a plugin 'bahag_photogallery'
Tapio Markula
tapio.markula at dnainternet.net
Wed Apr 26 17:03:54 CEST 2006
I made my evaluation version of bahag_photogallery
downloadable from
http://t3test.xetpoint.com/index.php?id=673
I added some markers for going to the first/last image in single view
and gallery overview. See templates.
Problems:
* /pi1/locallang.php still doesn't work as expected
* pop-up-window would need a TS config
'###IMAGE_COMMENT###' => $isValidPopView ? '':
$imageDesc['comment'],
Doesn't show comment in pop-up-window.
Not good - I must change
'###IMAGE_COMMENT###' => $isValidPopView ? $imageDesc['comment']:
$imageDesc['comment'],
Shoud be
'###IMAGE_COMMENT###' => ($isValidPopView && $noShowInPopView) ?
'': $imageDesc['comment'],
Problem is how to define TS for $noShowInPopView?
More information about the TYPO3-dev
mailing list