[TYPO3-german] Navigation im Produktkatalog

David Bruchmann david at bruchmann-web.de
Thu Sep 2 12:06:59 CEST 2010


  Am 02.09.2010 11:43, schrieb David Bruchmann:
>
> Ich habe das mehr oder weniger so implementiert:
>
> $conf['pidList'] = $this->cObj->data['pages'];
> $conf['recursive'] = $this->cObj->data['recursive'];
>
> $this->pidList = 
> $this->pi_getPidList($this->conf['pidList'],$this->conf['recursive']);


So funktioniert das natürlich nicht, es muss so lauten:

$conf['pidList'] = $this->cObj->data['pages'];
$conf['recursive'] = $this->cObj->data['recursive'];

$this->pidList = $this->pi_getPidList($conf['pidList'],$conf['recursive']);



oder so:


$this->conf['pidList'] = $this->cObj->data['pages'];
$this->conf['recursive'] = $this->cObj->data['recursive'];

$this->pidList = 
$this->pi_getPidList($this->conf['pidList'],$this->conf['recursive']);



Gruss,
David



More information about the TYPO3-german mailing list