Делаю выборку итемовмагазина, много лишнего в xml. Как мне добавить запрещенные тэги? addForbiddenTags в этом примере ничего не делает.
$oShop_Item = Core_Entity::factory('Shop_Item');
$oShop_Item->queryBuilder()->where('shop_id', '=', 1)
->where('shop_group_id', '=', 595)
->where('active', '=', 1)
->where('id', 'IN', $appIds)
;
$oShop_Item->addForbiddenTags(array('description','text', 'image_large', 'image_small',
'image_large_width', 'image_large_height', 'image_small_width', 'image_small_height',
'ip', 'seo_title', 'seo_description', 'seo_keywords', 'siteuser_group_id', 'date', 'datetime',
'start_datetime', 'end_datetime', 'dir'));
$aShop_Items = $oShop_Item->findAll();