[TYPO3-german] Navigation im Produktkatalog

JR jayr at moodler.de
Thu Sep 2 12:25:57 CEST 2010


Hallo David,

vielen Dank für deine Hilfe. Meine Erweiterung basiert leider auf Extbase. 
Kann ich deine Zeilen irgendwie ableiten?

Viele Grüße
Jan


-----Ursprüngliche Nachricht-----
Von: typo3-german-bounces at lists.typo3.org
[mailto:typo3-german-bounces at lists.typo3.org] Im Auftrag von David Bruchmann
Gesendet: Donnerstag, 2. September 2010 12:07
An: German TYPO3 Userlist
Betreff: Re: [TYPO3-german] Navigation im Produktkatalog

  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

_______________________________________________
TYPO3-german mailing list
TYPO3-german at lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german



More information about the TYPO3-german mailing list