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-boun...@lists.typo3.org [mailto:typo3-german-boun...@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@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german _______________________________________________ TYPO3-german mailing list TYPO3-german@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german