ich bekomms einfach nicht hin: ich will einfach sämtlicher Artikel einer Kategorie (idcat=2) durchgehen und dort das jew. Bild (1) ausgeben. Text funktioniert , Bild nicht. Kann mir jemand helfen?
In 4.8 hatte ich ja damit die idUpl bekommen, aber in 4.9 bekomme ich nichts

Code: Alles auswählen
$collector = new cArticleCollector(array(
'idcat' => 2
));
foreach ($collector as $article) {
echo $article->getContent('html',1);
echo $article->getContent('img',1);
}