I try to do wrap html around my values in my backend module and i use marker system.
This is my tsconfig line
tx_requesthandler_mod1.config.fields.mobile.wrap = <strong>|</strong>

I debug my stuff with a var_dump
var_dump($tsconfig['properties']['config.']['fields.']['mobile.']);

That is what is shown

array(1) {
 ["wrap"]=>
 string(18) "<strong>|</strong>"
}

So i get the good tsconfig path.

That's a part of my code :
$conf = $tsconfig['properties']['config.']['fields.']['mobile.'];
$markers['###MOBILE###'] = 
\TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::stdWrap($params['mobile'],$conf);

The value of $params['mobile'] is rendered but the wrap is never done.

What's wrong with my stuff?

Thanks!
_______________________________________________
TYPO3-english mailing list
[email protected]
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Reply via email to