With the CategoryItemEnumeration you get all Item IDs of a known Itemtype that are linked to a known Category.
Example ========= Receive all Menus for the Category 2: $catItemEnum = new CategoryItemEnumeration(_BIGACE_ITEM_MENU, 2); for($i=0;$i<$catItemEnum->count();$i++) { $temp = $catItemEnum->next(); $temp_menu = new Menu($temp['itemid']); }
Instatiate a CategoryItemEnumeration.
Get the amount of Results.
Returns wheter there is one more Search result or not.
Gets the next Result array.
The Array has the usable Index "itemid".
Documentation generated by phpDocumentor 1.3.1