Да свойства нет в XML, вот контроллер, вывод свойств включен вроде
<?php
// Новости
$Informationsystem_Controller_Show = new Informationsystem_Controller_Show(
Core_Entity::factory('Informationsystem', 16)
);
$Informationsystem_Controller_Show
->xsl(
Core_Entity::factory('Xsl')->getByName('СписокАфишНаГлавнойВшапке')
)
->groupsMode('none')
->itemsProperties(TRUE)
->itemsForbiddenTags(array('text'))
->group(FALSE)
->limit(6)
//->show()
;
// Объединение с нужной таблицей свойств
$Informationsystem_Controller_Show
->informationsystemItems()
->queryBuilder()
->leftJoin('informationsystem_item_properties', 'informationsystem_items.informationsystem_id', '=', 'informationsystem_item_properties.informationsystem_id')
->leftJoin('property_value_ints', 'informationsystem_items.id', '=', 'property_value_ints.entity_id',
array(
array('AND' => array('informationsystem_item_properties.property_id', '=', Core_QueryBuilder::expression('`property_value_ints`.`property_id`')))
)
)
// Идентификатор дополнительного свойства
->where('informationsystem_item_properties.property_id', '=', 103)
// Значание дополнительного свойства
->where('property_value_ints.value', '=', '1')
->groupBy('informationsystem_items.id')
// Количество свойств
->having(Core_Querybuilder::expression('COUNT(DISTINCT `informationsystem_item_properties`.`property_id`)'), '=', 1)
;
$Informationsystem_Controller_Show->show();
?>