[TYPO3-german] Re: plugin-Konfiguration in $conf übergeben klappt nicht

Steffen Müller typo3 at t3node.com
Fri Nov 2 23:09:07 CET 2007


On 02.11.2007 12:50 Bernd Hückstädt wrote:
> Hallo zusammen,
> 
> irgendwie stehe ich heute auf dem Schlauch.
> 
> Ich beginne gerade eine Extension mit dem Kickstarter und will testen,
> ob die Plugin-Konfiguration übergeben wird.
> 
> Extension-Key: joymailer
> 
> Setup:
> 
> plugin.tx_joymailer_pi1 {
> testConf = bla
> }
> 
> 
> php-Script:
> $content.= 'Test: ';
> $content.= $conf['testConf'];
> 
> 

function main($content,$conf)   {
    $this->conf=$conf;
    $content.= 'Test: ';
    $content.= $conf['testConf'];
    return $content;
}

Müsste vom Kickstarter bereits erzeugt worden sein.

-- 
cheers,
Steffen


More information about the TYPO3-german mailing list