Hello, I'm writing simple module which will output xml list with all products and variants in the shop.
Module is extending start class. In first time i wanted to fetch all root products with SQL query. SELECT oxid FROM oxarticles WHERE oxparentid IS NULL; Interesting thing, that always i got empty result. It seems that adodb dont want to work with "IS NULL". So then i decided to fetch all information i need by using oxid objects. $cats = $this->_oCategoryTree; //as i mentioned with module i'm expanding start object. I can get article IDs in categories subcat with ??->getSubCats(); but how to get root category articles? Respectfully, Darius Tumas _______________________________________________ dev-general mailing list [email protected] http://dir.gmane.org/gmane.comp.php.oxid.general
