[TYPO3-dev] A skin problem in page tree

Tapio Markula tapio.markula at dnainternet.net
Mon May 29 09:58:16 CEST 2006


Martin Kutschker wrote:
> Tapio Markula schrieb:
> 
>>
>> Something like here?
>>
>> $_EXTCONF = unserialize($_EXTCONF);
>>
>> if($_EXTCONF['enable.']['TinyMCEStyles'])
>>
>> $THIS_EXTCONF = 
>> unserialize($TYPO3_CONF_VARS['EXT']['extConf']['tm_contentaccess'])
>>
>> if($_THIS_EXTCONF['enable.']['enablePaste'])
> 
> 
> Yes.
> 
> Masi

I found this
$globalConf=unserialize($GLOBALS["TYPO3_CONF_VARS"]["EXT"]["extConf"]["tinyrte"]);
...

$globalConf["MCEbuttons1"]

then

$tmContentaccessConf=unserialize($GLOBALS["TYPO3_CONF_VARS"]["EXT"]["extConf"]["tm_contentaccess"]);

if($tmContentaccessConf["enablePaste"])
{
...
}

should work too?

You are right - developers use unserialize() for seaching
individual config options of certain plugins.
When I have time I try to remove string-function hack from my plugin.




More information about the TYPO3-dev mailing list